user7100036
user7100036

Reputation:

java.lang.NoClassDefFoundError: com.google.firebase.FirebaseOptions i tried all but solution but i dont know solution

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

Upvotes: 1

Views: 340

Answers (2)

suku
suku

Reputation: 10937

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

Upvotes: 1

Rahul Karande
Rahul Karande

Reputation: 259

use following dep in gradle

 compile 'com.google.firebase:firebase-messaging:9.2.0'
compile 'com.google.android.gms:play-services:9.2.0'

Upvotes: 0

Related Questions