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 15targetSdkVersion 25versionCode 1versionName '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’}
问题解答
回答1:已解决,在moblie.gradle中添加
aaptOptions.cruncherEnabled = falseaaptOptions.useNewCruncher = false
相关文章:
1. index.php错误,求指点2. node.js - 微信小程序 +nodejs+socket.io bug3. html5 - qq空间播放视频的返回数据4. nginx和web服务都跑在docker容器里时,nginx负载均衡如何配置服务的IP地址5. python小白,问一个关于可变类型和不可变类型底层的问题6. android listview 每行的金额 求总和7. android - coordinatorLayout嵌套recyclerview8. python - PyQt5 如何获得标题?9. html5 - 微信浏览器视频播放失败10. dict - Python判断字典中是否有重复值
