我在尝试运行最初在Eclipse ADT上创建的项目时遇到此问题。
Error:(17, 0) Gradle DSL method not found: 'compileSdkVersion()'
Possible causes:<ul><li>The project 'TaxiAndroidOpen-master' may be using a version of Gradle that does not contain the method.
<a href="open.wrapper.file">Open Gradle wrapper file</a></li><li>The build file may be missing a Gradle plugin.
<a href="apply.gradle.plugin">Apply Gradle plugin</a></li>
我已将此转换为Android Studio gradle系统。
但是我不能运行它,也不能编译它,因为这个错误,这里是生成的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.0.0'
}
}
allprojects {
repositories {
jcenter()
}
}
ext {
compileSdkVersion 17
buildToolsVersion '18.1.0'
}
dependencies {
}
我在SO上发现了一些其他帖子,但有类似的错误,但没有人有这个特定的帖子。
我使用的是Android Studio 1.0.2,x86。
任何人都可以对此有所了解吗?
提前致谢!
修改
更新了build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 17
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.opentaxi.android"
minSdkVersion 9
targetSdkVersion 19
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile project(':comtaxibulgariamap_mapsforge_044201406271417533')
compile files('libs/littlefluffylocationlibrary_r15.jar')
}
答案 0 :(得分:15)
您的应用程序模块的build.gradle文件应该如下所示。
apply plugin: 'com.android.application'
android {
compileSdkVersion 17
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.opentaxi.android"
minSdkVersion 9
targetSdkVersion 19
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile project(':comtaxibulgariamap_mapsforge_044201406271417533')
compile fileTree(include: ['*.jar'], dir: 'libs')
}
如果在发布时存在,则从主build.gradle(在应用程序的根目录中)中删除这些行。
ext {
compileSdkVersion 17
buildToolsVersion '18.1.0'
}
dependencies {
}
答案 1 :(得分:9)
您最近是否升级到Android Studio 1.0?如果是这样,请将appProguard替换为app / build.gradle中的minifyEnabled。
答案 2 :(得分:2)
在build.gradle(模块)中添加后为我工作:
应用插件:“ kotlin-kapt”
答案 3 :(得分:0)
如果将实现文件放入错误的gradle中,也会出现此错误。
应放在此处build.graddle(模块)内
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
而不是在build.graddle(App)
中