当我尝试在nexus5设备上运行应用程序时,Android Studio打开错误窗口,提示“ 安装失败,并显示消息INSTALL_FAILED_CONFLICTING_PROVIDER ”,然后我问我是否要卸载现有应用程序,即使该应用程序在设备上不存在。另外,运行窗口还会显示“ 失败[INSTALL_FAILED_CONFLICTING_PROVIDER] ”
当单击确定时,我进入运行窗口:
“设备外壳命令:下午卸载com.app.app DELETE_FAILED_INTERNAL_ERROR”
谢谢您的帮助!
我注意到,使用棉花糖(Android 6.0+)时,新的“ com.google.android.gms”播放服务版本8.3.0存在问题。我建议使用8.1.0版本-在我的情况下可以解决该问题。
例如:
dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.google.android.gms:play-services-gcm:8.3.0' }
需要更改为:
dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.google.android.gms:play-services-gcm:8.1.0' }
在build.gradle文件中