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. docker-machine添加一个已有的docker主机问题2. angular.js - angularjs的自定义过滤器如何给文字加颜色?3. docker - 如何修改运行中容器的配置4. javascript - 修改表单多选项时和后台同事配合的问题。5. Docker for Mac 创建的dnsmasq容器连不上/不工作的问题6. 关于docker下的nginx压力测试7. redis - 究竟是选择微信小程序自带的统计工具还是自己开发一个数据统计的代码?8. angular.js - angular ui bootstrap 中文显示问题9. javascript - 怎么实现点击表格中的某一行然后就在表单处出现表格中的对应的属性值啊10. docker-compose 为何找不到配置文件?

网公网安备