Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
change version number and version name
system manager: hide bug report dialog after user click confirm
  • Loading branch information
BinTianqi committed Jun 1, 2024
1 parent 19415d9 commit 628f770
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
11 changes: 5 additions & 6 deletions Readme-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ Use Device admin and Device owner privilege to take full control of your device.

This app is renamed to "OwnDroid" from "Android Owner".

### Docs

I'm preparing new docs. For now, you can go to [User guide (Chinese)](Guide.md)

### Advantage

- Open source. Device owner privilege could be more dangerous than root, close-source software's security is not guaranteed.
- Easy to use. You can use this utility easily. A [chinese user guide](Guide.md) is also provided.
- Easy to use. You can use this utility easily. A chinese [User guide](Guide.md) is also provided.
- Modern. This app is built with Kotlin and Jetpack Compose, designed with Material Design 3. And some new features on Android 14 is adapted.
- Maintaining. This project is updating. Any Issue and PR is welcome.

Expand All @@ -29,11 +33,6 @@ This software may not have as many features as Google's official [TestDPC](https
- User manage
- Password and keyguard

### Implementing features

- User manage: user picker
- Security logs and network logs

### License

[License.md](LICENSE.md)
Expand Down
9 changes: 4 additions & 5 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

这个APP已经改名为"OwnDroid",原名"Android Owner"

### 文档

我正在准备一个全新的文档,现在你可以去看[使用指南](Guide.md)

### 优点

- 开源。Device owner权限可能比root权限更危险,闭源软件的安全性没有保证
Expand All @@ -29,11 +33,6 @@
- 用户管理
- 密码与锁屏

### 正在开发的功能

- 用户管理:用户选择器(现在只能手动输入用户序列号)
- 安全日志和网络日志

### 许可证

[License.md](LICENSE.md)
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
applicationId = "com.bintianqi.owndroid"
minSdk = 21
targetSdk = 34
versionCode = 28
versionName = "5.3.1"
versionCode = 29
versionName = "5.4"
multiDexEnabled = false
}

Expand Down
2 changes: 2 additions & 0 deletions app/src/main/java/com/bintianqi/owndroid/dpm/SystemManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ private fun BugReportDialog(status: MutableState<Boolean>) {
onClick = {
val result = dpm.requestBugreport(receiver)
Toast.makeText(context, if(result) R.string.success else R.string.fail, Toast.LENGTH_SHORT).show()
status.value = false
}
) {
Text(stringResource(R.string.confirm))
Expand Down Expand Up @@ -1255,5 +1256,6 @@ fun InstallSystemUpdate() {
Information {
Text(stringResource(R.string.auto_reboot_after_install_succeed))
}
Spacer(Modifier.padding(vertical = 30.dp))
}
}

0 comments on commit 628f770

Please sign in to comment.