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. dockerfile - [docker build image失败- npm install]2. docker api 开发的端口怎么获取?3. nignx - docker内nginx 80端口被占用4. golang - 用IDE看docker源码时的小问题5. docker images显示的镜像过多,狗眼被亮瞎了,怎么办?6. 关于docker下的nginx压力测试7. python3.x - git bash如何运行.bat文件?8. dockerfile - 我用docker build的时候出现下边问题 麻烦帮我看一下9. docker网络端口映射,没有方便点的操作方法么?10. 在windows下安装docker Toolbox 启动Docker Quickstart Terminal 失败!
