java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/util/zzq;
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
add a comment |
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
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
add a comment |
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
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
java
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
If you would like to use Cloud Messaging, add
com.google.firebase:firebase-messaging:17.3.4
And remove the GCM dependency you have
add a comment |
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.
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
If you would like to use Cloud Messaging, add
com.google.firebase:firebase-messaging:17.3.4
And remove the GCM dependency you have
add a comment |
If you would like to use Cloud Messaging, add
com.google.firebase:firebase-messaging:17.3.4
And remove the GCM dependency you have
add a comment |
If you would like to use Cloud Messaging, add
com.google.firebase:firebase-messaging:17.3.4
And remove the GCM dependency you have
If you would like to use Cloud Messaging, add
com.google.firebase:firebase-messaging:17.3.4
And remove the GCM dependency you have
answered Nov 18 '18 at 4:51
cricket_007cricket_007
82.8k1145112
82.8k1145112
add a comment |
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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