java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;












2















I am trying to add Firebase to my app.
Although Gradle builds succesfully, the app crashes on start with this error:




java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;




Here is my apps build.gradle:



apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "some_id"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
mavenCentral()
jcenter()
flatDir {
dirs 'libs'
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
/**
* Library file of the SDK, delivered as aar-library
*/
implementation(name: 'dwdsdk-3.3.0', ext: 'aar')
/**
* additional library needed for DWD-SDK:
* play-service: needed to receive push notifications
*/
implementation 'com.google.android.gms:play-services-gcm:11.8.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'


And this is the projects build.gradle:



// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
jcenter()
flatDir {
dirs 'libs'
}
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}


Thanks for all help










share|improve this question























  • GCM has been replaced with Firebase Cloud Messaging

    – cricket_007
    Nov 18 '18 at 4:47











  • @mrd Did it work for you? i'm also stuck in the same problem.

    – Mandeep Kumar
    Feb 1 at 11:41
















2















I am trying to add Firebase to my app.
Although Gradle builds succesfully, the app crashes on start with this error:




java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;




Here is my apps build.gradle:



apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "some_id"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
mavenCentral()
jcenter()
flatDir {
dirs 'libs'
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
/**
* Library file of the SDK, delivered as aar-library
*/
implementation(name: 'dwdsdk-3.3.0', ext: 'aar')
/**
* additional library needed for DWD-SDK:
* play-service: needed to receive push notifications
*/
implementation 'com.google.android.gms:play-services-gcm:11.8.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'


And this is the projects build.gradle:



// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
jcenter()
flatDir {
dirs 'libs'
}
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}


Thanks for all help










share|improve this question























  • GCM has been replaced with Firebase Cloud Messaging

    – cricket_007
    Nov 18 '18 at 4:47











  • @mrd Did it work for you? i'm also stuck in the same problem.

    – Mandeep Kumar
    Feb 1 at 11:41














2












2








2








I am trying to add Firebase to my app.
Although Gradle builds succesfully, the app crashes on start with this error:




java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;




Here is my apps build.gradle:



apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "some_id"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
mavenCentral()
jcenter()
flatDir {
dirs 'libs'
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
/**
* Library file of the SDK, delivered as aar-library
*/
implementation(name: 'dwdsdk-3.3.0', ext: 'aar')
/**
* additional library needed for DWD-SDK:
* play-service: needed to receive push notifications
*/
implementation 'com.google.android.gms:play-services-gcm:11.8.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'


And this is the projects build.gradle:



// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
jcenter()
flatDir {
dirs 'libs'
}
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}


Thanks for all help










share|improve this question














I am trying to add Firebase to my app.
Although Gradle builds succesfully, the app crashes on start with this error:




java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;




Here is my apps build.gradle:



apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "some_id"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
mavenCentral()
jcenter()
flatDir {
dirs 'libs'
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
/**
* Library file of the SDK, delivered as aar-library
*/
implementation(name: 'dwdsdk-3.3.0', ext: 'aar')
/**
* additional library needed for DWD-SDK:
* play-service: needed to receive push notifications
*/
implementation 'com.google.android.gms:play-services-gcm:11.8.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'


And this is the projects build.gradle:



// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
jcenter()
flatDir {
dirs 'libs'
}
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}


Thanks for all help







java android android-gradle firebase-cloud-messaging build.gradle






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 15 '18 at 13:14









mrdmrd

1,87984172




1,87984172













  • GCM has been replaced with Firebase Cloud Messaging

    – cricket_007
    Nov 18 '18 at 4:47











  • @mrd Did it work for you? i'm also stuck in the same problem.

    – Mandeep Kumar
    Feb 1 at 11:41



















  • GCM has been replaced with Firebase Cloud Messaging

    – cricket_007
    Nov 18 '18 at 4:47











  • @mrd Did it work for you? i'm also stuck in the same problem.

    – Mandeep Kumar
    Feb 1 at 11:41

















GCM has been replaced with Firebase Cloud Messaging

– cricket_007
Nov 18 '18 at 4:47





GCM has been replaced with Firebase Cloud Messaging

– cricket_007
Nov 18 '18 at 4:47













@mrd Did it work for you? i'm also stuck in the same problem.

– Mandeep Kumar
Feb 1 at 11:41





@mrd Did it work for you? i'm also stuck in the same problem.

– Mandeep Kumar
Feb 1 at 11:41












2 Answers
2






active

oldest

votes


















1














If you would like to use Cloud Messaging, add



com.google.firebase:firebase-messaging:17.3.4


And remove the GCM dependency you have






share|improve this answer































    1














    I have similar problem with you.



    java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;



    I think it is version problem.



    you should update firebase version up to date.
    It worked for me.
    Thank you.






    share|improve this answer


























    • What versions are you using?

      – cricket_007
      Nov 18 '18 at 4:46











    • I've used gms service with firebase and this is my gradle. implementation 'com.google.firebase:firebase-core:16.0.5'

      – Sang Won
      Nov 18 '18 at 4:50













    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53320325%2fjava-lang-noclassdeffounderror-failed-resolution-of-lcom-google-android-gms-co%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    If you would like to use Cloud Messaging, add



    com.google.firebase:firebase-messaging:17.3.4


    And remove the GCM dependency you have






    share|improve this answer




























      1














      If you would like to use Cloud Messaging, add



      com.google.firebase:firebase-messaging:17.3.4


      And remove the GCM dependency you have






      share|improve this answer


























        1












        1








        1







        If you would like to use Cloud Messaging, add



        com.google.firebase:firebase-messaging:17.3.4


        And remove the GCM dependency you have






        share|improve this answer













        If you would like to use Cloud Messaging, add



        com.google.firebase:firebase-messaging:17.3.4


        And remove the GCM dependency you have







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 18 '18 at 4:51









        cricket_007cricket_007

        82.8k1145112




        82.8k1145112

























            1














            I have similar problem with you.



            java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;



            I think it is version problem.



            you should update firebase version up to date.
            It worked for me.
            Thank you.






            share|improve this answer


























            • What versions are you using?

              – cricket_007
              Nov 18 '18 at 4:46











            • I've used gms service with firebase and this is my gradle. implementation 'com.google.firebase:firebase-core:16.0.5'

              – Sang Won
              Nov 18 '18 at 4:50


















            1














            I have similar problem with you.



            java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;



            I think it is version problem.



            you should update firebase version up to date.
            It worked for me.
            Thank you.






            share|improve this answer


























            • What versions are you using?

              – cricket_007
              Nov 18 '18 at 4:46











            • I've used gms service with firebase and this is my gradle. implementation 'com.google.firebase:firebase-core:16.0.5'

              – Sang Won
              Nov 18 '18 at 4:50
















            1












            1








            1







            I have similar problem with you.



            java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;



            I think it is version problem.



            you should update firebase version up to date.
            It worked for me.
            Thank you.






            share|improve this answer















            I have similar problem with you.



            java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;



            I think it is version problem.



            you should update firebase version up to date.
            It worked for me.
            Thank you.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 19 '18 at 4:58

























            answered Nov 18 '18 at 4:42









            Sang WonSang Won

            521112




            521112













            • What versions are you using?

              – cricket_007
              Nov 18 '18 at 4:46











            • I've used gms service with firebase and this is my gradle. implementation 'com.google.firebase:firebase-core:16.0.5'

              – Sang Won
              Nov 18 '18 at 4:50





















            • What versions are you using?

              – cricket_007
              Nov 18 '18 at 4:46











            • I've used gms service with firebase and this is my gradle. implementation 'com.google.firebase:firebase-core:16.0.5'

              – Sang Won
              Nov 18 '18 at 4:50



















            What versions are you using?

            – cricket_007
            Nov 18 '18 at 4:46





            What versions are you using?

            – cricket_007
            Nov 18 '18 at 4:46













            I've used gms service with firebase and this is my gradle. implementation 'com.google.firebase:firebase-core:16.0.5'

            – Sang Won
            Nov 18 '18 at 4:50







            I've used gms service with firebase and this is my gradle. implementation 'com.google.firebase:firebase-core:16.0.5'

            – Sang Won
            Nov 18 '18 at 4:50




















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53320325%2fjava-lang-noclassdeffounderror-failed-resolution-of-lcom-google-android-gms-co%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            List item for chat from Array inside array React Native

            Thiostrepton

            Caerphilly