1

How to resolve problem? I'm used everything. This is duplicate but I tried all.

classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.google.gms:google-services:3.0.0'  

I'm using multiDexEnable = true also

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

android {
  compileSdkVersion 23
  buildToolsVersion "23.0.2"

  defaultConfig {
    applicationId "com.agilerise.school"
    minSdkVersion 11
    targetSdkVersion 23
    versionCode 3
    versionName "1.3"
    enforceUniquePackageName = false
    multiDexEnabled true
  }
  buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'),  'proguard-rules.pro'
        resValue "string", "google_maps_api_key",  "AIzaSyCPkzR0YESTkV97RaMW0iJvgxuW_2EpfPI"
    }
    debug {
        resValue "string", "google_maps_api_key", "AIzaSyD-rVHRsXJJFcThPFRgyBwKok3qXggMxtM"
    }

  }
  dexOptions {
    incremental true
    javaMaxHeapSize "4g"
  }
}

dependencies {
  compile fileTree(include: ['*.jar'], dir: 'libs')
  testCompile 'junit:junit:4.12'
  compile files('libs/gcm.jar')
  compile files('libs/YouTubeAndroidPlayerApi.jar')
  compile fileTree(dir: 'libs', include: ['*.jar'])
  compile 'com.android.support:appcompat-v7:23.1.1'
  compile 'com.android.support:support-v4:+'

  compile 'com.android.support:cardview-v7:23.1.1'
  compile 'com.android.support:recyclerview-v7:23.1.1'
  compile                                                   'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
  compile 'com.android.support:design:23.1.1'

  compile 'com.google.android.gms:play-services:10.0.1'
  compile 'com.google.android.gms:play-services-location:10.0.1'

  compile 'com.jpardogo.googleprogressbar:library:1.2.0'
  compile 'com.github.traex.rippleeffect:library:1.3'
  compile 'de.hdodenhof:circleimageview:2.0.0'
  compile 'com.nineoldandroids:library:2.4.0'

  compile 'com.daimajia.easing:library:1.0.1@aar'
  compile 'com.android.support:multidex:1.0.1'
  compile 'com.daimajia.androidanimations:library:1.1.3@aar'
  compile('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
    transitive = true;
  }
  compile 'com.google.firebase:firebase-messaging:10.0.1'
}

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

See PlayService

See PlayService

nalzok
  • 14,965
  • 21
  • 72
  • 139

2 Answers2

1

Add the classpath to build.gradle.

dependencies {
    classpath 'com.android.tools.build:gradle:2.2.3'
    classpath 'com.google.gms:google-services:3.0.0'
}
suku
  • 10,507
  • 16
  • 75
  • 120
  • 1
    Error:(11, 0) Cause: com/android/build/gradle/AppPlugin : Unsupported major.minor version 52.0 Open File –  Jan 30 '17 at 06:09
  • after aply this line –  Jan 30 '17 at 06:09
  • Your android studio is not updated...already nougat is out and you target SDK is marshmallow (23)...I think firebase also requires gradle 2 atleast...why don't you update your android studio first – suku Jan 30 '17 at 06:14
  • @sourabh http://stackoverflow.com/questions/39116095/android-studio-buildtools-24-0-1-requires-java-1-8-or-above/39116275#39116275 – IntelliJ Amiya Jan 30 '17 at 06:15
0

use following dep in gradle

 compile 'com.google.firebase:firebase-messaging:9.2.0'
compile 'com.google.android.gms:play-services:9.2.0'
Rahul Karande
  • 259
  • 2
  • 9