是否有 ADB 命令可以更改已安装应用程序的高级设置?
Is there an ADB command to change the advanced settings of an installed application?
我一直在尝试使用 ADB 命令行找出一个命令来更改我通过 ADB 安装的应用程序的高级设置。
安装后,我希望使用 ADB 命令将以下设置更改为 'allow':
这可能吗?
我认为可能是:found here
adb shell pm grant com.mycompany.mypackage INSTALL_NON_MARKET_APPS 1
安装未知应用的命令是:
adb shell pm grant com.company.testapp android.permission.REQUEST_INSTALL_PACKAGES
这将失败,因为 android.permission.REQUEST_INSTALL_PACKAGES
不是可更改的权限类型:
Operation not allowed: java.lang.SecurityException: Permission android.permission.REQUEST_INSTALL_PACKAGES is not a changeable permission type
也许有解决这个问题的办法,我不知道。
我一直在尝试使用 ADB 命令行找出一个命令来更改我通过 ADB 安装的应用程序的高级设置。
安装后,我希望使用 ADB 命令将以下设置更改为 'allow':
这可能吗?
我认为可能是:found here
adb shell pm grant com.mycompany.mypackage INSTALL_NON_MARKET_APPS 1
安装未知应用的命令是:
adb shell pm grant com.company.testapp android.permission.REQUEST_INSTALL_PACKAGES
这将失败,因为 android.permission.REQUEST_INSTALL_PACKAGES
不是可更改的权限类型:
Operation not allowed: java.lang.SecurityException: Permission android.permission.REQUEST_INSTALL_PACKAGES is not a changeable permission type
也许有解决这个问题的办法,我不知道。