应用程序期间出现SecurityException:尝试在MI MAX 2安卓设备上运行react本机应用程序时安装调试



运行npx react-native run-android在安卓模拟器上运行,也在我的三星设备上运行。但当连接MI MAX 2设备时,我会得到以下信息:

> Task :app:installDebug
Installing APK 'app-debug.apk' on 'MI MAX 2 - 7.1.1' for app:debug
> Task :app:installDebug FAILED
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.5/userguide/command_line_interface.html#sec:command_line_warnings
847 actionable tasks: 2 executed, 845 up-to-date
Unable to install /Users/[....]/android/app/build/outputs/apk/debug/app-debug.apk
com.android.ddmlib.InstallException: Unknown failure: Error: java.lang.SecurityException: You need the android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS permission to use the PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS flag
at com.android.ddmlib.internal.DeviceImpl.installRemotePackage(DeviceImpl.java:1224)
at com.android.ddmlib.internal.DeviceImpl.installPackage(DeviceImpl.java:1050)
at com.android.ddmlib.internal.DeviceImpl.installPackage(DeviceImpl.java:1026)
at com.android.ddmlib.internal.DeviceImpl.installPackage(DeviceImpl.java:1015)
at ... etc, etc, etc
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:installDebug'.
> java.util.concurrent.ExecutionException: com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: Unknown failure: Error: java.lang.SecurityException: You need the android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS permission to use the PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS flag
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 30s
error Failed to install the app. Make sure you have the Android development environment set up: https://reactnative.dev/docs/environment-setup. Run CLI with --verbose flag for more details.
Error: Command failed: ./gradlew app:installDebug -PreactNativeDevServerPort=4105
Unable to install /Users/[....]/android/app/build/outputs/apk/debug/app-debug.apk

注意:我尝试将以下内容添加到我的AndroidManifest.xml中,但似乎没有什么不同:

<uses-permission android:name="android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS"/>

有什么想法吗?

确保所有三个

  1. 开发人员选项->USB调试
  2. 开发人员选项->USB调试(安全设置(
  3. 开发人员选项->通过USB安装

打开

我可以在启用Developer Options->的MI POCO F2 Pro上修复它;USB debugging (Security settings)选项。

在我的小米Redmi Note 7上,我不得不打开另一个名为";USB调试(安全设置(";。

它位于";USB调试";选项

从开发人员选项启用USB调试(安全设置(。如果手机没有插入SIM卡,它会要求您插入SIM卡。

从MI设备上卸下SIM card后,我遇到了问题。从那以后,我再也不能接受USB调试(安全设置(了。。

解决方案:我已经尝试过了,我插入了我的模拟人生和开发人员选项->USB调试(安全设置(和USB调试-都打开了,但在我的设备中,我仍然面临着同样的问题,然后我激活了:通过USB安装-打开了。现在它工作正常,我想我的REDMI设备有这个其他手机可能没有的附加选项。

此网页具有运行Appium的所有相关功能:http://appium.io/docs/en/writing-running-appium/caps/index.html在我的功能部分,我还为实际设备添加了2个新功能,并导入了一个库,上面写着:

import io.appium.java_client.android.appmanagement.*;
DesiredCapabilities cap= new DesiredCapabilities();
cap.setCapability("autoGrantPermissions", "true");
cap.setCapability("enforceAppInstall", "true");

相关内容

最新更新