我更新了android studio從版本1.0到1.2.1,當我開始我的第一個應用程序時,出現這個。Gradle code not building:aidl is missing
錯誤:執行任務':app:compileDebugAidl'失敗。
aidl is missing
我確定所有的sdk都是最新的。這是我的gradle構建代碼。
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc1"
defaultConfig {
applicationId "com.example.william.myapplication"
minSdkVersion 17
targetSdkVersion 22
versionCode 1
versionName "1.0"
compileSdkVersion 21
}
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:22.2.0'
}
或者降級到'22.0.1'爲'buildToolsVersion',特別是如果你沒有建立的M開發者預覽版。 – CommonsWare