gpt4 book ai didi

android - 无法在对象上找到参数 [com.android.support :appcompat-v7:25. 4.0] 的方法实现()...android

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

我必须编译在线购买的项目。在将其导入 android studio 时...它提示 gradle 版本,所以我将 distributionUrl 更新为此 distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

当我现在尝试清理项目并重建时..失败并出现此错误:

Error:(45, 1) A problem occurred evaluating project ':app'. Could not find method implementation() for arguments [com.android.support:appcompat-v7:25.4.0] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

下面是整个构建 gradle 文件:

 apply plugin: 'com.android.application'

apply plugin: 'io.fabric'

android {
compileSdkVersion 25
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "dumm.value"
minSdkVersion 15
targetSdkVersion 25
versionCode 5
versionName "1.0.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}


dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',

{

exclude group: 'com.android.support', module: 'support-annotations'
})
/* Remove This to remove Crashlytics and Fabric */

compile('com.crashlytics.sdk.android:crashlytics:2.6.7@aar') {
transitive = true;
}
/* compile('com.digits.sdk.android:digits:2.0.6@aar') {
transitive = true;
}*/
implementation 'com.android.support:appcompat-v7:25.4.0'
implementation 'com.android.support:design:25.4.0'
implementation 'com.android.support:recyclerview-v7:25.4.0'
implementation 'com.squareup.okhttp3:okhttp:3.8.1'
implementation 'com.android.support:cardview-v7:25.4.0'
implementation 'com.github.bumptech.glide:glide:3.8.0'
implementation 'com.google.android.gms:play-services-maps:11.0.2'
implementation 'com.google.android.gms:play-services-location:11.0.2'
implementation 'com.google.android.gms:play-services-places:11.0.2'
implementation 'com.google.firebase:firebase-auth:11.0.2'
implementation 'com.google.firebase:firebase-messaging:11.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.1.0-beta1'
implementation 'com.google.code.gson:gson:2.8.0'
testCompile 'junit:junit:4.12'


}

apply plugin: 'com.google.gms.google-services'

请问我该如何解决?

最佳答案

要使用implementation(),您需要使用gradle v.4gradle plugin v.3

使用:

distributionUrl=\
https\://services.gradle.org/distributions/gradle-4.1-all.zip

buildscript {
repositories {
...
// You need to add the following repository to download the
// new plugin.
maven {
url "https://maven.google.com"
}
//google() //only if you use Android Studio 3.x
}

dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-beta7'
}
}

更多info here.

关于android - 无法在对象上找到参数 [com.android.support :appcompat-v7:25. 4.0] 的方法实现()...android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46619132/

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