搜尋

首頁  >  問答  >  主體

java - Android Studio編譯打包Apk出現錯誤

打包Apk的時候出現「Build APK: Errors while building APK. You can find the errors in the 'Messages' view.」錯誤

#我的Gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"
    defaultConfig {
        applicationId "cn.licoy.demo2"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            shrinkResources true  // -- always add this above minifyEnabled --
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
}
我想大声告诉你我想大声告诉你2716 天前1302

全部回覆(1)我來回復

  • ringa_lee

    ringa_lee2017-06-19 09:09:40

    已解決,在moblie.gradle中加入

    aaptOptions.cruncherEnabled = false
    aaptOptions.useNewCruncher = false

    回覆
    0
  • 取消回覆