-
Android Studio编译后安装进手机时,出现如下错误:
- 有几种解决办法:
- AndroidMainfest.xml中设置了apk属性为testOnly, 把它参数改为false或者直接删掉即可.
<appliaction
...
android:testOnly="false"
...>
....
</application>
- AndroidMainfest.xml中设置了
android:sharedUserId="android.uid.system"
把它删掉即可
- 将Gradle版本改为稳定版本
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}