我已将项目从Eclipse
导入Android Studio
,但由于上述错误,gradle构建始终失败。我不明白错误是什么。
这是我的gradle
apply plugin: 'com.android.library'
android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
minSdkVersion 7
targetSdkVersion 19
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile project(':signaturePad')
compile 'com.google.android.gms:play-services:+'
compile 'com.android.support:appcompat-v7:23.4.0'
compile files('libs/NineOldAndroid-2.4.0.jar')
compile files('libs/picasso-2.3.3.jar')
}
我尝试过更改buildtoolsversion
,但它无效。
对于每个构建工具版本,它都会产生相同的错误。
我也试过了Invalidate Chace and Restart
,但仍然没有结果。
我还尝试卸载buildtools
并重新安装它,但仍然没有结果。
答案 0 :(得分:0)
将以下行添加到gradle.properties
android.enableAapt2=false