update readme

change version number and version name
system manager: hide bug report dialog after user click confirm
This commit is contained in:
BinTianqi
2024-06-01 19:29:36 +08:00
parent 19415d9786
commit 628f770221
4 changed files with 13 additions and 13 deletions

View File

@@ -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". 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 ### Advantage
- Open source. Device owner privilege could be more dangerous than root, close-source software's security is not guaranteed. - 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. - 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. - Maintaining. This project is updating. Any Issue and PR is welcome.
@@ -29,11 +33,6 @@ This software may not have as many features as Google's official [TestDPC](https
- User manage - User manage
- Password and keyguard - Password and keyguard
### Implementing features
- User manage: user picker
- Security logs and network logs
### License ### License
[License.md](LICENSE.md) [License.md](LICENSE.md)

View File

@@ -8,6 +8,10 @@
这个APP已经改名为"OwnDroid",原名"Android Owner" 这个APP已经改名为"OwnDroid",原名"Android Owner"
### 文档
我正在准备一个全新的文档,现在你可以去看[使用指南](Guide.md)
### 优点 ### 优点
- 开源。Device owner权限可能比root权限更危险闭源软件的安全性没有保证 - 开源。Device owner权限可能比root权限更危险闭源软件的安全性没有保证
@@ -29,11 +33,6 @@
- 用户管理 - 用户管理
- 密码与锁屏 - 密码与锁屏
### 正在开发的功能
- 用户管理:用户选择器(现在只能手动输入用户序列号)
- 安全日志和网络日志
### 许可证 ### 许可证
[License.md](LICENSE.md) [License.md](LICENSE.md)

View File

@@ -26,8 +26,8 @@ android {
applicationId = "com.bintianqi.owndroid" applicationId = "com.bintianqi.owndroid"
minSdk = 21 minSdk = 21
targetSdk = 34 targetSdk = 34
versionCode = 28 versionCode = 29
versionName = "5.3.1" versionName = "5.4"
multiDexEnabled = false multiDexEnabled = false
} }

View File

@@ -366,6 +366,7 @@ private fun BugReportDialog(status: MutableState<Boolean>) {
onClick = { onClick = {
val result = dpm.requestBugreport(receiver) val result = dpm.requestBugreport(receiver)
Toast.makeText(context, if(result) R.string.success else R.string.fail, Toast.LENGTH_SHORT).show() Toast.makeText(context, if(result) R.string.success else R.string.fail, Toast.LENGTH_SHORT).show()
status.value = false
} }
) { ) {
Text(stringResource(R.string.confirm)) Text(stringResource(R.string.confirm))
@@ -1255,5 +1256,6 @@ fun InstallSystemUpdate() {
Information { Information {
Text(stringResource(R.string.auto_reboot_after_install_succeed)) Text(stringResource(R.string.auto_reboot_after_install_succeed))
} }
Spacer(Modifier.padding(vertical = 30.dp))
} }
} }