您好我尝试使用android studio调试andoid应用程序,但我收到此错误
Error:Execution failed for task ':app:processDebugResources'.
> at index 4
这是我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.kevarystudio.projectName.projectName"
minSdkVersion 9
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.0.0-alpha1'
}
任何想法?
答案 0 :(得分:0)
使用:
compileSdkVersion 'android-N'
buildToolsVersion "24.0.0 rc2"