diff --git a/Readme-en.md b/Readme-en.md index f5a5c64..21abbf4 100644 --- a/Readme-en.md +++ b/Readme-en.md @@ -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. @@ -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) diff --git a/Readme.md b/Readme.md index 642813a..747ad55 100644 --- a/Readme.md +++ b/Readme.md @@ -8,6 +8,10 @@ 这个APP已经改名为"OwnDroid",原名"Android Owner" +### 文档 + +我正在准备一个全新的文档,现在你可以去看[使用指南](Guide.md) + ### 优点 - 开源。Device owner权限可能比root权限更危险,闭源软件的安全性没有保证 @@ -29,11 +33,6 @@ - 用户管理 - 密码与锁屏 -### 正在开发的功能 - -- 用户管理:用户选择器(现在只能手动输入用户序列号) -- 安全日志和网络日志 - ### 许可证 [License.md](LICENSE.md) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6341eca..1e79c20 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -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 } diff --git a/app/src/main/java/com/bintianqi/owndroid/dpm/SystemManager.kt b/app/src/main/java/com/bintianqi/owndroid/dpm/SystemManager.kt index 0b05057..dbe22d9 100644 --- a/app/src/main/java/com/bintianqi/owndroid/dpm/SystemManager.kt +++ b/app/src/main/java/com/bintianqi/owndroid/dpm/SystemManager.kt @@ -366,6 +366,7 @@ private fun BugReportDialog(status: MutableState) { 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)) @@ -1255,5 +1256,6 @@ fun InstallSystemUpdate() { Information { Text(stringResource(R.string.auto_reboot_after_install_succeed)) } + Spacer(Modifier.padding(vertical = 30.dp)) } }