我正在尝试创建我的第一个Android应用程序。为此,我使用Android Studio 2.2.3。我用单个活动创建了一个简单的应用程序,它什么都不做,只是空屏幕而不是其他。
我正在开发魅族MX6,我开启了下一个选项:
还配置了udev规则。
当我按下“运行”按钮时,我看到此消息:
Installation failed with message INSTALL_FAILED_USER_RESTRICTED.
It is possible that this issue is resolved by uninstalling an existing version of the apk if it is present, and then re-installing.
WARNING: Uninstalling will remove the application data!
Do you want to uninstall the existing application?
按OK后,此日志将出现在控制台输出中:
$ adb push /home/***/dev/android/HelloAndroid/app/build/outputs/apk/app-debug.apk /data/local/tmp/com.android.hello.helloandroid
$ adb shell pm install -r "/data/local/tmp/com.android.hello.helloandroid"
pkg: /data/local/tmp/com.android.hello.helloandroid
Failure [INSTALL_FAILED_USER_RESTRICTED]
$ adb shell pm uninstall com.android.hello.helloandroid
DELETE_FAILED_INTERNAL_ERROR
Error while Installing APK
有人可以解释如何解决这个问题吗?
答案 0 :(得分:0)
检查当前用户是否具有root访问权限。如果您尚未执行此操作,请启用开发人员模式。
答案 1 :(得分:0)
清除临时文件夹并删除项目中的构建目录后,请再次构建。