Android - 解析错误[Nexus 9平板电脑和Nexus 6p]

时间:2016-02-17 07:40:46

标签: android android-studio installation android-6.0-marshmallow parse-error

当我尝试在 Nexus 9平板电脑和Nexus 6p 上运行我的应用时,我面临解析错误 - 解析包时出现问题,但是在Nexus 4上正常运行,还有更多设备在棉花糖上运行。

我不明白我错过了什么,我的gradle文件代码在

之下
android {
    compileSdkVersion 23
    buildToolsVersion "23.0.0"

    defaultConfig {
        applicationId "my.package.name"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE-FIREBASE.txt'
        exclude 'META-INF/NOTICE'
    }
}

enter image description here

0 个答案:

没有答案