【发布时间】:2018-06-12 05:13:39
【问题描述】:
这是我的build.gradle(app) 文件..
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.odev09.eazyvisi"
minSdkVersion 16
targetSdkVersion 19
multiDexEnabled true
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
debuggable false
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
当我生成签名的 APK 时,它会给出以下错误
错误:任务执行失败 ':app:transformClassesAndResourcesWithProguardForRelease'.
【问题讨论】:
标签: java android memory-management