mirror of
https://github.com/awfixers-stuff/OwnDroid.git
synced 2026-03-23 11:05:59 +00:00
Add fastlane metadata (#152)
This commit is contained in:
12
Readme-en.md
12
Readme-en.md
@@ -14,12 +14,12 @@ Use Android's DevicePolicyManager API to manage your device.
|
|||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- System: Disable camera, disable screenshot, master volume mute, disable USB signal, Lock task mode, Manage CA certificates, Wipe data...
|
- System: disable camera, disable screenshot, master volume mute, disable USB signal, lock task mode, wipe data...
|
||||||
- Network: Add/modify/delete Wi-Fi, Network stats, Minimum Wi-Fi security level, Always-on VPN, Network logging...
|
- Network: add/modify/delete Wi-Fi, network stats, network logging...
|
||||||
- Applications: Suspend/hide app, Block app uninstallation, Grant/revoke permissions, Clear app storage, Install/uninstall app...
|
- Applications: suspend/hide app, block app uninstallation, grant/revoke permissions, clear app storage, install/uninstall app...
|
||||||
- User restriction: Disable SMS, disable outgoing call, disable bluetooth, disable NFC, disable USB file transfer, disable app installing, disable app uninstalling...
|
- User restriction: disable SMS, disable outgoing call, disable bluetooth, disable NFC, disable USB file transfer, disable app installing/uninstalling...
|
||||||
- User manager: User information, Start/switch/stop/delete user, Create user...
|
- Users: user information, create/start/switch/stop/delete user...
|
||||||
- Password and keyguard: Reset password, Require password complexity, Set screen timeout...
|
- Password and keyguard: reset password, set screen timeout...
|
||||||
|
|
||||||
## Working modes
|
## Working modes
|
||||||
|
|
||||||
|
|||||||
10
Readme.md
10
Readme.md
@@ -14,12 +14,12 @@
|
|||||||
|
|
||||||
## 功能
|
## 功能
|
||||||
|
|
||||||
- 系统:禁用摄像头、禁止截屏、全局静音、禁用USB信号、锁定任务模式、管理CA证书、清除数据...
|
- 系统:禁用摄像头、禁止截屏、全局静音、禁用USB信号、锁定任务模式、清除数据...
|
||||||
- 网络:添加/修改/删除 Wi-Fi、网络统计、最小Wi-Fi安全等级、VPN保持打开、网络日志...
|
- 网络:添加/修改/删除 Wi-Fi、网络统计、网络日志...
|
||||||
- 应用:挂起/隐藏应用、阻止应用卸载、授予/撤销权限、清除应用存储、安装/卸载应用...
|
- 应用:挂起/隐藏应用、阻止应用卸载、授予/撤销权限、清除应用存储、安装/卸载应用...
|
||||||
- 用户限制:禁止发送短信、禁止拨出电话、禁用蓝牙、禁用NFC、禁用USB文件传输、禁止安装应用、禁止卸载应用...
|
- 用户限制:禁止发送短信、禁止拨出电话、禁用蓝牙、禁用NFC、禁用USB文件传输、禁止安装/卸载应用...
|
||||||
- 用户:用户信息、启动/切换/停止/删除用户、创建用户...
|
- 用户:用户信息、创建/启动/切换/停止/删除用户...
|
||||||
- 密码与锁屏:重置密码、要求密码复杂度、设置屏幕超时...
|
- 密码与锁屏:重置密码、设置屏幕超时...
|
||||||
|
|
||||||
## 工作模式
|
## 工作模式
|
||||||
|
|
||||||
|
|||||||
@@ -214,9 +214,11 @@ fun ApplicationsFeaturesScreen(onNavigateUp: () -> Unit, onNavigate: (Any) -> Un
|
|||||||
if(VERSION.SDK_INT >= 28 && privilege.device) {
|
if(VERSION.SDK_INT >= 28 && privilege.device) {
|
||||||
FunctionItem(R.string.keep_uninstalled_packages, icon = R.drawable.delete_fill0) { onNavigate(KeepUninstalledPackages) }
|
FunctionItem(R.string.keep_uninstalled_packages, icon = R.drawable.delete_fill0) { onNavigate(KeepUninstalledPackages) }
|
||||||
}
|
}
|
||||||
if(VERSION.SDK_INT >= 28) FunctionItem(R.string.install_existing_app, icon = R.drawable.install_mobile_fill0) {
|
if (VERSION.SDK_INT >= 28 && (privilege.device || (privilege.profile && privilege.affiliated))) {
|
||||||
|
FunctionItem(R.string.install_existing_app, icon = R.drawable.install_mobile_fill0) {
|
||||||
onNavigate(InstallExistingApp)
|
onNavigate(InstallExistingApp)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if(VERSION.SDK_INT >= 30 && privilege.work) {
|
if(VERSION.SDK_INT >= 30 && privilege.work) {
|
||||||
FunctionItem(R.string.cross_profile_apps, icon = R.drawable.work_fill0) { onNavigate(CrossProfilePackages) }
|
FunctionItem(R.string.cross_profile_apps, icon = R.drawable.work_fill0) { onNavigate(CrossProfilePackages) }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -116,7 +116,9 @@ fun UserRestrictionScreen(onNavigateUp: () -> Unit, onNavigate: (Any) -> Unit) {
|
|||||||
) {
|
) {
|
||||||
Spacer(Modifier.padding(vertical = 2.dp))
|
Spacer(Modifier.padding(vertical = 2.dp))
|
||||||
Text(text = stringResource(R.string.switch_to_disable_feature), modifier = Modifier.padding(start = 16.dp))
|
Text(text = stringResource(R.string.switch_to_disable_feature), modifier = Modifier.padding(start = 16.dp))
|
||||||
if(privilege.profile) { Text(text = stringResource(R.string.profile_owner_is_restricted), modifier = Modifier.padding(start = 16.dp)) }
|
if (privilege.profile && !privilege.work) {
|
||||||
|
Text(text = stringResource(R.string.profile_owner_is_restricted), modifier = Modifier.padding(start = 16.dp))
|
||||||
|
}
|
||||||
if(privilege.work) {
|
if(privilege.work) {
|
||||||
Text(text = stringResource(R.string.some_features_invalid_in_work_profile), modifier = Modifier.padding(start = 16.dp))
|
Text(text = stringResource(R.string.some_features_invalid_in_work_profile), modifier = Modifier.padding(start = 16.dp))
|
||||||
}
|
}
|
||||||
|
|||||||
17
fastlane/metadata/android/en-US/full_description.txt
Normal file
17
fastlane/metadata/android/en-US/full_description.txt
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
OwnDroid is a DPC (device policy controller) app.
|
||||||
|
|
||||||
|
It supports the following working modes:
|
||||||
|
|
||||||
|
- Device owner
|
||||||
|
- Profile owner (only in secondary users)
|
||||||
|
- Work profile
|
||||||
|
- Dhizuku
|
||||||
|
|
||||||
|
It has the following features:
|
||||||
|
|
||||||
|
- System: disable camera, disable screenshot, master volume mute, disable USB signal, lock task mode, wipe data...
|
||||||
|
- Network: add/modify/delete Wi-Fi, network stats, network logging...
|
||||||
|
- Applications: suspend/hide app, block app uninstallation, grant/revoke permissions, clear app storage, install/uninstall app...
|
||||||
|
- User restriction: disable SMS, disable outgoing call, disable bluetooth, disable NFC, disable USB file transfer, disable app installing/uninstalling...
|
||||||
|
- Users: user information, create/start/switch/stop/delete user...
|
||||||
|
- Password and keyguard: reset password, set screen timeout...
|
||||||
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/1.jpg
Normal file
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/1.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
1
fastlane/metadata/android/en-US/short_description.txt
Normal file
1
fastlane/metadata/android/en-US/short_description.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
Use device owner privileges to manage your device
|
||||||
17
fastlane/metadata/android/zh/full_description.txt
Normal file
17
fastlane/metadata/android/zh/full_description.txt
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
OwnDroid是一个设备策略管理器app。
|
||||||
|
|
||||||
|
它支持以下几种工作模式:
|
||||||
|
|
||||||
|
- Device owner
|
||||||
|
- Profile owner (仅在次要用户中)
|
||||||
|
- 工作资料
|
||||||
|
- Dhizuku
|
||||||
|
|
||||||
|
它有以下功能:
|
||||||
|
|
||||||
|
- 系统:禁用摄像头、禁止截屏、全局静音、禁用USB信号、锁定任务模式、清除数据...
|
||||||
|
- 网络:添加/修改/删除 Wi-Fi、网络统计、网络日志...
|
||||||
|
- 应用:挂起/隐藏应用、阻止应用卸载、授予/撤销权限、清除应用存储、安装/卸载应用...
|
||||||
|
- 用户限制:禁止发送短信、禁止拨出电话、禁用蓝牙、禁用NFC、禁用USB文件传输、禁止安装/卸载应用...
|
||||||
|
- 用户:用户信息、创建/启动/切换/停止/删除用户...
|
||||||
|
- 密码与锁屏:重置密码、设置屏幕超时...
|
||||||
BIN
fastlane/metadata/android/zh/images/phoneScreenshots/1.jpg
Normal file
BIN
fastlane/metadata/android/zh/images/phoneScreenshots/1.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
1
fastlane/metadata/android/zh/short_description.txt
Normal file
1
fastlane/metadata/android/zh/short_description.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
使用device owner特权管理你的设备
|
||||||
Reference in New Issue
Block a user