导入模块对话框-6ren">
gpt4 book ai didi

java - 从 GIT 添加模块到 Android Studio 抛出 "buildToolsVersion is not specified"错误

转载 作者:太空宇宙 更新时间:2023-11-03 12:04:24 25 4
gpt4 key购买 nike

我想包括 this Color Picker进入我的 Android Studio 项目。

所以我将它 checkout 到本地文件夹中,使用“Android Studio 中的新建->导入模块对话框”将其添加到我的项目中。

然后我将这两行添加到我的 app.gradle 文件中

apply plugin: 'com.android.application'
...
compile project(':colorpicker')

这里是完整的gradle文件

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion '24.0.2'

defaultConfig {
applicationId "com.mydomain.myapp"
minSdkVersion 17
targetSdkVersion 24
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
maven { url "https://jitpack.io" }
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile fileTree(include: ['dtp_library'], dir: 'libs')
compile project(':libs:dtp_library')
compile 'com.android.support:design:24.2.1'
compile project(':colorpicker')
}

但是我一直报错

Error:Cause: buildToolsVersion is not specified.

如果我不将第一行添加到 gradle 文件中(完全按照颜色选择器的描述来做)那么我会得到

Error:(3, 0) Could not find method android() for arguments [build_xxxxx] on project ':app' of type org.gradle.api.Project.

如何解决?

最佳答案

按照以下步骤:

打开拾色器模块的build.gradle文件

enter image description here

所以在你的情况下,将这些行添加到 colorpicker 模块的 build.gradle 文件中

compileSdkVersion 24
buildToolsVersion '24.0.2'

关于java - 从 GIT 添加模块到 Android Studio 抛出 "buildToolsVersion is not specified"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39836800/

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