8

Android 新手,尝试构建一个干净的“空白应用程序”android 项目。

我收到以下错误,这很令人困惑,因为我使用 SDK 管理器安装了 24 版,不确定它为什么要寻找 23 版。它没有给我任何类型的行号来查看,有什么建议吗?谢谢你。

Configuration on demand is an incubating feature.
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72220Library UP-TO-DATE
:app:prepareComAndroidSupportSupportV42220Library UP-TO-DATE
:app:prepareDebugDependencies
:app:compileDebugAidl FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:compileDebugAidl'.
> aidl is missing

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 2.243 secs
Executing tasks: [:app:assembleDebug]

Configuration on demand is an incubating feature.

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':app'.
> failed to find Build Tools revision 23.0.0 rc1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 1.136 secs
4

3 回答 3

30

打开 SDK 管理器并找到已安装且您要使用的 Android SDK Build-tools 的版本。然后转到 Gradle Scripts > build.gradle (Module: app)。将 buildToolsVersion 设置为您的版本。

编辑: 有一个更简单的解决方案。右键单击项目>打开模块设置。选择您要使用的 Complie Sdk 版本和构建工具版本。

于 2015-07-10T10:11:40.147 回答
4

如果在sdk manager中找不到23.0.0 rc1,可以修改gradle的sdk版本。如何?像这样编辑 build.gradle,然后更改 buildToolsVersion。

android {
    compileSdkVersion 22
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.sunjiajia.androidnewwidgetsdemo"
        minSdkVersion 14
            targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
于 2015-10-22T14:49:43.847 回答
0

找到您要安装的 BuildTools id,

ANDROID_HOME=/Users/prayagupd/Library/Android/sdk/

$ANDROID_HOME/tools/android list sdk -a | grep "revision 23"
  10- Android SDK Build-tools, revision 23.0.3
  11- Android SDK Build-tools, revision 23.0.2
  12- Android SDK Build-tools, revision 23.0.1
  13- Android SDK Build-tools, revision 23 (Obsolete)

然后,安装您想要的 buildTool 版本,例如。23.0.1已经23过时了。

$ANDROID_HOME/tools/android update sdk -a -u -t 12

您可以使用

$ANDROID_HOME/tools/android sdk

这将在 UI 中显示 buildTools,如下所示,

在此处输入图像描述

那么./gradlew clean build应该是成功的。

于 2016-12-26T07:45:33.060 回答