我尝试过尝试解决aapt.exe错误的任何解决方案。 每次我尝试向build.gradle添加新的依赖项时,我都会收到此错误,并在删除依赖项后错误消失。 我尝试过编译SDK,更改构建工具版本,使无效/清除缓存,并行激活编译独立模块。 注册的唯一依赖项是:
signingConfigs { compile fileTree(include: '*.jar', dir: 'libs')
compile project(':android-support-v7-appcompat')
compile files('libs/android-integration-3.2.1.jar')
compile files('libs/android-core-3.2.1.jar')
如果我需要为项目添加另一个依赖项,我该如何处理呢?
我正在研究android studio 1.4.1 compileSdkVersion 19 buildToolsVersion '22 .0.1'
答案 0 :(得分:0)
你应该在({1}}中添加你的依赖库(Module:app),如果你使用Android studio GUI添加任何库,它最终会在这个地方添加该库,或者你手动放置一个库在build.gradle
中,将其添加到项目库中,它仍将添加到此处。
请检查您添加依赖项的位置和方式
libs
在上面的代码中添加了gson库dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:design:23.1.0'
compile 'com.android.support:support-v4:23.1.0'
compile 'com.google.code.gson:gson:2.4'
compile files('libs/commons-io-2.4.jar')
}
使用android studio GUI和
添加了apache common io compile 'com.google.code.gson:gson:2.4'
将它的库放在Android项目的compile files('libs/commons-io-2.4.jar')
目录中