Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gradle sync failed: Plugin with id 'com.google.android.gms:play-services' not found

In one of my projects I need to use GoogleMaps and Firebase for notifications but the libraries of the service and the Firebase in place do not want to work.

buildscript {
    repositories {
        google()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
    dependencies {
        classpath 'com.google.android.gms:play-services:8.4.0'
        classpath 'com.android.tools.build:gradle:3.0.1'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
    maven { url 'https://maven.fabric.io/public' }
    maven { url "https://maven.google.com" }
}

android {
    compileSdkVersion 26
    buildToolsVersion '26.0.2'
    defaultConfig {
        applicationId "com.online.app"
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 8
        versionName "2.5"
        multiDexEnabled true
    }
    buildTypes {
        release {
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }    
    productFlavors {
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:support-v4:26.0.2'
    compile 'me.leolin:ShortcutBadger:1.1.6@aar'
    compile('com.crashlytics.sdk.android:crashlytics:2.6.0@aar') {
        transitive = true;
    }
    compile "com.google.firebase:firebase-ads:11.8.0"
    compile "com.android.support:appcompat-v7:26.1.0"
    compile 'com.android.support:multidex:1.0.1'
}

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

Error:

Gradle sync failed: Plugin with id 'com.google.android.gms:play-services' not found.
Consult IDE log for more details (Help | Show Log) (2s 325ms)
like image 310
Владимир Аристархов Avatar asked Feb 20 '18 08:02

Владимир Аристархов


1 Answers

change this:

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

to this:

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

check this for more info: https://developers.google.com/android/guides/google-services-plugin

like image 95
Peter Haddad Avatar answered Sep 30 '22 15:09

Peter Haddad