【发布时间】:2017-04-08 08:35:16
【问题描述】:
我将我的项目从 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 文件是 // 顶级构建文件,您可以在其中添加所有子项目/模块通用的配置选项。 构建脚本 {
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'
}
【问题讨论】:
-
用类路径'com.android.tools.build:gradle:2.2.2'改变build.gradle
-
尝试重新安装 gradle 插件
-
将 buildToolsVersion 降低到 24 以下,你的 sdk 中有这个
-
是的,我去了那个页面,但目的解决方案对我不起作用。所以我在 stackoverflow 中发布了这里。
-
将我的 gradle 更改为 2.2.2 版仍然会引发相同的错误
标签: android android-studio gradle