更新Android Studio,SDK和工具后出现问题:
错误:(19,0)未找到Gradle DSL方法:'android()'
请帮忙解决问题:
热门 build.gradle 文件:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
android {
compileSdkVersion 16
// buildToolsVersion '22.0.1' //23.02.2
}
dependencies {
}
另一个 build.gradle (模块:应用)文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 16
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.mateuyabar.android.pillownfc"
minSdkVersion 10
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'])
compile 'com.android.support:appcompat-v7:23.0.0'
}
以下是错误消息Gradle Sync:
错误:(19,0)未找到Gradle DSL方法:'android()'
可能的原因:
项目'pillowNFC-master'可能正在使用不包含该方法的Gradle版本。 -Open Gradle包装文件
构建文件可能缺少Gradle插件。 -Apply Gradle插件
事件记录:
11:20:46 Gradle sync开始
11:20:48 Gradle sync失败:未找到Gradle DSL方法:'android()' 有关更多详细信息,请参阅IDE日志(帮助|显示日志)
我知道,之前曾问过这个问题,但我没有在其他讨论中找到解决方案=(
如果有人能提供帮助会很好,我在编程方面很陌生。
答案 0 :(得分:1)
您使用的是错误的build.gradle
文件
在顶级文件中,您无法使用 android
块。
另请查看此post。
只需从第一个build.gradle
中删除此部分即可android {
compileSdkVersion 16
// buildToolsVersion '22.0.1' //23.02.2
}
dependencies {
}
另外注意 由于您使用的是appcompat v23 ,因此您必须使用API 23进行编译。
在module/build.gradle
中将compileSdkVersion
更改为 23
compileSdkVersion 23