mirror of
https://github.com/awfixers-stuff/OwnDroid.git
synced 2026-03-23 19:15:58 +00:00
update readme
change version number and version name system manager: hide bug report dialog after user click confirm
This commit is contained in:
11
Readme-en.md
11
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)
|
||||
|
||||
@@ -8,6 +8,10 @@
|
||||
|
||||
这个APP已经改名为"OwnDroid",原名"Android Owner"
|
||||
|
||||
### 文档
|
||||
|
||||
我正在准备一个全新的文档,现在你可以去看[使用指南](Guide.md)
|
||||
|
||||
### 优点
|
||||
|
||||
- 开源。Device owner权限可能比root权限更危险,闭源软件的安全性没有保证
|
||||
@@ -29,11 +33,6 @@
|
||||
- 用户管理
|
||||
- 密码与锁屏
|
||||
|
||||
### 正在开发的功能
|
||||
|
||||
- 用户管理:用户选择器(现在只能手动输入用户序列号)
|
||||
- 安全日志和网络日志
|
||||
|
||||
### 许可证
|
||||
|
||||
[License.md](LICENSE.md)
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
|
||||
@@ -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))
|
||||
@@ -1255,5 +1256,6 @@ fun InstallSystemUpdate() {
|
||||
Information {
|
||||
Text(stringResource(R.string.auto_reboot_after_install_succeed))
|
||||
}
|
||||
Spacer(Modifier.padding(vertical = 30.dp))
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user