找不到对象的参数[com.android.support:appcompat-v7:25.4.0]的方法实现()... android

ewo*_*468 3 android android-gradle-plugin

我必须编译一个在线购买的项目.在将它导入android studio..it抱怨gradle版本所以我更新了distributionUrl到此distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

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

错误:(45,1)评估项目':app'时出现问题.无法在类型为org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler的对象上找到参数[com.android.support:appcompat-v7:25.4.0]的方法实现().

下面是整个构建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'
Run Code Online (Sandbox Code Playgroud)

请问我该如何解决这个问题?

Gab*_*tti 8

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

使用:

distributionUrl=\
  https\://services.gradle.org/distributions/gradle-4.1-all.zip
Run Code Online (Sandbox Code Playgroud)

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'
    }
}
Run Code Online (Sandbox Code Playgroud)

更多信息在这里.

  • 这样做后我仍然有同样的问题 (2认同)