java.lang.IllegalStateException:缺少aidl

时间:2016-11-24 06:45:54

标签: android android-studio gradle

我将我的项目从android studio版本2.1.2导入到2.2。它在我的旧Android版本中完美运行,但在android studio 2.2中出现错误。这个错误的解决方案已经发布了很多,经过一天没有解决方案对我有用。我在这里做错了。

Error:Execution failed for task ':app:compileDebugAidl'.
> java.lang.IllegalStateException: aidl is missing

我的项目级build.gradle文件是     //顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。 buildscript {

repositories {
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:2.1.2'
    classpath 'com.google.gms:google-services:3.0.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
  }
}


allprojects {
repositories {
    jcenter()
  }
}
 task clean(type: Delete) {
delete rootProject.buildDir
}

我的模块级build.gradle是

apply plugin: 'com.android.application'

android {

defaultConfig {
    applicationId "com.ujjwalmainali.univhub"
    minSdkVersion 16
    targetSdkVersion 23
    versionCode 6
    versionName "1.0"
}


compileSdkVersion 23
buildToolsVersion "24.0.0"


buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
 }
}

repositories {
    maven { url "https://raw.githubusercontent.com/smilefam/SendBird-SDK Android/master/" }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    //iconify dependencies

    //iconify
    compile 'com.joanzapata.iconify:android-iconify-fontawesome:2.2.2'
    // (v4.5)
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.sendbird.sdk:sendbird-android-sdk:3.0.7'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:cardview-v7:23.0.+'
compile 'com.android.support:recyclerview-v7:23.0.+'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.3'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.googlecode.json-simple:json-simple:1.1'
compile 'com.ogaclejapan.smarttablayout:library:1.6.1@aar'
compile 'com.ogaclejapan.smarttablayout:utils-v4:1.6.1@aar'
compile 'com.google.firebase:firebase-core:9.2.0'
compile 'com.google.firebase:firebase-messaging:9.2.0'
compile 'com.google.firebase:firebase-analytics:9.2.0'
compile 'com.google.android.gms:play-services-ads:9.2.0'
compile 'com.applozic.communication.uiwidget:mobicomkitui:4.63'
//app crash report
compile 'ch.acra:acra:4.9.0'
ext.googlePlayServicesVersion = '9.0.2'
ext.supportLibraryVersion = '23.1.1'
provided 'org.glassfish:javax.annotation:10.0-b28'
apply plugin: 'com.google.gms.google-services'
}

1 个答案:

答案 0 :(得分:0)

更改你的buildToolsVersion" 24.0.0" to buildToolsVersion" 23.0.3"因为你的compileSdkVersion是@Ironman建议的23。

同样在您的项目级别gradle文件更改 classpath' com.android.tools.build:gradle:2.1.2'至 classpath' com.android.tools.build:gradle:2.2.2'

我这样做了。

希望它有所帮助。!