gpt4 book ai didi

android - 错误 :Cause: buildToolsVersion is not specified

转载 作者:IT老高 更新时间:2023-10-28 13:23:28 25 4
gpt4 key购买 nike

我创建了一个简单的项目,然后右键单击该项目,然后使用 make mudole app 选项。现在我有两个 build.gradle 文件夹:1- build.gradle:project My Application。 2- build.gradle: Mudole 应用程序。第一个build.gradle如下:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.android.library'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'

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

allprojects {
repositories {
jcenter()
}
}

而第二个Build.gradle文件夹如下:

 apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"

defaultConfig {
applicationId "com.exam.exam.myapplication"
minSdkVersion 7
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'])
}

现在我点击 run 选项从这个项目创建 aar 文件但是我得到以下错误:

Error:Cause: buildToolsVersion is not specified.

最佳答案

我有同样的问题。我做错的是在项目的根 gradle 中放置应用插件语句。当我将它放在应用程序 gradle 中时,问题就解决了。

我的建议是检查您是否在根 gradle 中放置了一些您应该放置在应用程序 gradle 中的语句。

关于android - 错误 :Cause: buildToolsVersion is not specified,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32153544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com