Bug P3
Status Update
Comments
ar...@gmail.com <ar...@gmail.com> #2
Would love to have Wear OS fixed up in the near future when it comes to permission dialogs.
No update yet.
Would love to have Wear OS fixed up in the near future when it comes to permission dialogs.
Description
Devices/Android versions reproduced on: from WearOS Android 9 to WearOS Android 14
Requesting
android.Manifest.permission.REQUEST_INSTALL_PACKAGES
crashes the system permission dialog, making it impossible to grant install permissions to the app.Manually granting permission from system settings (Settings > Apps & notifications > App Info > [Our app] > Advanced > Install unknown apps -> ON) and checking it via
context.checkSelfPermission(android.Manifest.permission.REQUEST_INSTALL_PACKAGES)
returnsPackageManager.PERMISSION_DENIED
Using ADB to grant the permission via
adb shell pm grant [package name] android.permission.REQUEST_INSTALL_PACKAGES
throws the following error:Our only workaround is to use Shizuku to bypass permissions altogether.