找不到参数 [com.android.tools.build:gradle] 的方法类路径 ()
Could not find method classpath() for arguments [com.android.tools.build:gradle]
最近我在 gradle 文件上遇到了一些问题,所以我做了一些调整来解决这些问题,每次调整都会导致一个新的错误,当前错误是:
在 org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.[=28= 类型的对象上找不到参数 [com.android.tools.build:gradle:4.1.3] 的方法类路径 () ]
这是 gradle>build.gradle 文件:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.3"
//classpath "com.android.tools.build:gradle:+"
classpath 'com.google.gms:google-services:4.2.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是应用程序>src>build.gradle 文件:
plugins {
id 'com.android.application'
}
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.example.myapplication_10"
minSdkVersion 29
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.3"
//classpath 'com.android.tools.build:gradle:+'
classpath 'com.google.gms:google-services:4.2.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
我更改了“gradel-wrapper”文件中的 gradle 版本:
#Tue Mar 23 14:02:06 EET 2021
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-all.zip
前两个文件中的 gradle 4.1.3 是默认值,我试图将其更改为 6.8.2(与 gradle-wrapper 文件中一样)但它抛出一个错误。
在您的 app/build.gradle
中删除 classpath
语句
dependencies {
//classpath "com.android.tools.build:gradle:4.1.3"
//classpath 'com.android.tools.build:gradle:+'
//classpath 'com.google.gms:google-services:4.2.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
...
}
好的,我认为在您的 Appgradle 文件中您调用了类路径。它应该只添加到 Gradle 文件中,而不是应用内 Gradle 文件
dependencies {
//Remove these class path you will be good to go
classpath "com.android.tools.build:gradle:4.1.3"
//classpath 'com.android.tools.build:gradle:+'
classpath 'com.google.gms:google-services:4.2.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
最近我在 gradle 文件上遇到了一些问题,所以我做了一些调整来解决这些问题,每次调整都会导致一个新的错误,当前错误是:
在 org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.[=28= 类型的对象上找不到参数 [com.android.tools.build:gradle:4.1.3] 的方法类路径 () ]
这是 gradle>build.gradle 文件:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.3"
//classpath "com.android.tools.build:gradle:+"
classpath 'com.google.gms:google-services:4.2.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是应用程序>src>build.gradle 文件:
plugins {
id 'com.android.application'
}
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.example.myapplication_10"
minSdkVersion 29
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.3"
//classpath 'com.android.tools.build:gradle:+'
classpath 'com.google.gms:google-services:4.2.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
我更改了“gradel-wrapper”文件中的 gradle 版本:
#Tue Mar 23 14:02:06 EET 2021
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-all.zip
前两个文件中的 gradle 4.1.3 是默认值,我试图将其更改为 6.8.2(与 gradle-wrapper 文件中一样)但它抛出一个错误。
在您的 app/build.gradle
中删除 classpath
语句
dependencies {
//classpath "com.android.tools.build:gradle:4.1.3"
//classpath 'com.android.tools.build:gradle:+'
//classpath 'com.google.gms:google-services:4.2.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
...
}
好的,我认为在您的 Appgradle 文件中您调用了类路径。它应该只添加到 Gradle 文件中,而不是应用内 Gradle 文件
dependencies {
//Remove these class path you will be good to go
classpath "com.android.tools.build:gradle:4.1.3"
//classpath 'com.android.tools.build:gradle:+'
classpath 'com.google.gms:google-services:4.2.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}