Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find method implementation() for arguments [com.android.support:appcompat-v7:25.4.0] on object...android

I have to compile a project purchased on line. On importing it into android studio..it complained about the gradle version so i updated the distributionUrl to this distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

When i now attempted to clean the project and rebuild..it failed with this error :

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.

Below is the whole build gradle file :

 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'

Please how can i solve this ?

like image 635
ewom2468 Avatar asked Dec 08 '22 16:12

ewom2468


2 Answers

To use implementation() you need to use gradle v.4 and the gradle plugin v.3

Use:

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

and

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'
    }
}

More info here.

like image 76
Gabriele Mariotti Avatar answered Dec 10 '22 11:12

Gabriele Mariotti


1.Open the build.gradle file for your application. 2.Make sure that the repositories section includes a maven section with the "https://maven.google.com" endpoint. For example:

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}
like image 42
Tejas Pandya Avatar answered Dec 10 '22 11:12

Tejas Pandya