App crashes after upgrading dependecies to latest version in android
I am getting following error after upgrading my project to the latest dependencies "Didn't find class
"com.google.android.gms.common.util.zzq" on
path: DexPathList[[zip
file "/system/framework/org.apache.http.legacy.boot.jar",
zip file "/data/app/com.example.example-jBf5YcFyN-t4Cm8erTCBwQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.example.example-jBf5YcFyN-t4Cm8erTCBwQ==/lib/x86,
/system/lib]]"
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.example"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
// Enabling multidex support.
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled true
}
// buildToolsVersion '28.0.3'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:animated-vector-drawable:27.1.1'
implementation 'com.android.support:customtabs:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:cardview-v7:27.1.1'
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'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.jsoup:jsoup:1.10.3'
implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.google.android.gms:play-services-places:16.0.0'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.google.firebase:firebase-core:16.0.5'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6'
implementation 'com.facebook.android:facebook-android-sdk:4.32.0'
implementation 'com.intuit.sdp:sdp-android:1.0.5'
/*map place autosuggest*/
//for calendar class
implementation 'joda-time:joda-time:2.9.9'
implementation 'de.hdodenhof:circleimageview:2.2.0'
//QB dependecies
implementation 'com.quickblox:quickblox-android-sdk-core:3.8.1'
implementation('com.quickblox:quickblox-android-sdk-chat:3.8.0') {
transitive = true
}
implementation 'com.quickblox:chat-message-adapter:2.0'
implementation 'com.quickblox:quickblox-android-sdk-content:3.8.0'
implementation 'com.timehop.stickyheadersrecyclerview:library:0.4.2@aar'
implementation 'com.github.orangegangsters:swipy:1.2.3@aar'
implementation project(':sample-core')
// implementation 'com.jwang123.flagkit:flagkit:1.0'
}
apply plugin: 'com.google.gms.google-services'
apply plugin: 'io.fabric'
//GoogleServicesPlugin.config.disableVersionCheck = true
Can anyone guide me how to solve this issue.
I have been searching stackoverflow from last two days for the solution of this issue. Please help.
add a comment |
I am getting following error after upgrading my project to the latest dependencies "Didn't find class
"com.google.android.gms.common.util.zzq" on
path: DexPathList[[zip
file "/system/framework/org.apache.http.legacy.boot.jar",
zip file "/data/app/com.example.example-jBf5YcFyN-t4Cm8erTCBwQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.example.example-jBf5YcFyN-t4Cm8erTCBwQ==/lib/x86,
/system/lib]]"
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.example"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
// Enabling multidex support.
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled true
}
// buildToolsVersion '28.0.3'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:animated-vector-drawable:27.1.1'
implementation 'com.android.support:customtabs:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:cardview-v7:27.1.1'
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'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.jsoup:jsoup:1.10.3'
implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.google.android.gms:play-services-places:16.0.0'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.google.firebase:firebase-core:16.0.5'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6'
implementation 'com.facebook.android:facebook-android-sdk:4.32.0'
implementation 'com.intuit.sdp:sdp-android:1.0.5'
/*map place autosuggest*/
//for calendar class
implementation 'joda-time:joda-time:2.9.9'
implementation 'de.hdodenhof:circleimageview:2.2.0'
//QB dependecies
implementation 'com.quickblox:quickblox-android-sdk-core:3.8.1'
implementation('com.quickblox:quickblox-android-sdk-chat:3.8.0') {
transitive = true
}
implementation 'com.quickblox:chat-message-adapter:2.0'
implementation 'com.quickblox:quickblox-android-sdk-content:3.8.0'
implementation 'com.timehop.stickyheadersrecyclerview:library:0.4.2@aar'
implementation 'com.github.orangegangsters:swipy:1.2.3@aar'
implementation project(':sample-core')
// implementation 'com.jwang123.flagkit:flagkit:1.0'
}
apply plugin: 'com.google.gms.google-services'
apply plugin: 'io.fabric'
//GoogleServicesPlugin.config.disableVersionCheck = true
Can anyone guide me how to solve this issue.
I have been searching stackoverflow from last two days for the solution of this issue. Please help.
which library can you use ??
– Ali
Nov 13 '18 at 13:41
I'm guessing there is some inconsistency between version numbers. Share your build.gradle file
– ZUNJAE
Nov 13 '18 at 13:43
This is because of different versions of same library in your project. Check for warnings in build.gradle, it helps alot in these cases.
– Anurag Chutani
Nov 13 '18 at 13:47
@ZUNJAE please check i have added the gradle file
– divaPrajapati09
Nov 14 '18 at 4:51
add a comment |
I am getting following error after upgrading my project to the latest dependencies "Didn't find class
"com.google.android.gms.common.util.zzq" on
path: DexPathList[[zip
file "/system/framework/org.apache.http.legacy.boot.jar",
zip file "/data/app/com.example.example-jBf5YcFyN-t4Cm8erTCBwQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.example.example-jBf5YcFyN-t4Cm8erTCBwQ==/lib/x86,
/system/lib]]"
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.example"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
// Enabling multidex support.
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled true
}
// buildToolsVersion '28.0.3'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:animated-vector-drawable:27.1.1'
implementation 'com.android.support:customtabs:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:cardview-v7:27.1.1'
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'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.jsoup:jsoup:1.10.3'
implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.google.android.gms:play-services-places:16.0.0'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.google.firebase:firebase-core:16.0.5'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6'
implementation 'com.facebook.android:facebook-android-sdk:4.32.0'
implementation 'com.intuit.sdp:sdp-android:1.0.5'
/*map place autosuggest*/
//for calendar class
implementation 'joda-time:joda-time:2.9.9'
implementation 'de.hdodenhof:circleimageview:2.2.0'
//QB dependecies
implementation 'com.quickblox:quickblox-android-sdk-core:3.8.1'
implementation('com.quickblox:quickblox-android-sdk-chat:3.8.0') {
transitive = true
}
implementation 'com.quickblox:chat-message-adapter:2.0'
implementation 'com.quickblox:quickblox-android-sdk-content:3.8.0'
implementation 'com.timehop.stickyheadersrecyclerview:library:0.4.2@aar'
implementation 'com.github.orangegangsters:swipy:1.2.3@aar'
implementation project(':sample-core')
// implementation 'com.jwang123.flagkit:flagkit:1.0'
}
apply plugin: 'com.google.gms.google-services'
apply plugin: 'io.fabric'
//GoogleServicesPlugin.config.disableVersionCheck = true
Can anyone guide me how to solve this issue.
I have been searching stackoverflow from last two days for the solution of this issue. Please help.
I am getting following error after upgrading my project to the latest dependencies "Didn't find class
"com.google.android.gms.common.util.zzq" on
path: DexPathList[[zip
file "/system/framework/org.apache.http.legacy.boot.jar",
zip file "/data/app/com.example.example-jBf5YcFyN-t4Cm8erTCBwQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.example.example-jBf5YcFyN-t4Cm8erTCBwQ==/lib/x86,
/system/lib]]"
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.example"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
// Enabling multidex support.
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled true
}
// buildToolsVersion '28.0.3'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:animated-vector-drawable:27.1.1'
implementation 'com.android.support:customtabs:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:cardview-v7:27.1.1'
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'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.jsoup:jsoup:1.10.3'
implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.google.android.gms:play-services-places:16.0.0'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.google.firebase:firebase-core:16.0.5'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6'
implementation 'com.facebook.android:facebook-android-sdk:4.32.0'
implementation 'com.intuit.sdp:sdp-android:1.0.5'
/*map place autosuggest*/
//for calendar class
implementation 'joda-time:joda-time:2.9.9'
implementation 'de.hdodenhof:circleimageview:2.2.0'
//QB dependecies
implementation 'com.quickblox:quickblox-android-sdk-core:3.8.1'
implementation('com.quickblox:quickblox-android-sdk-chat:3.8.0') {
transitive = true
}
implementation 'com.quickblox:chat-message-adapter:2.0'
implementation 'com.quickblox:quickblox-android-sdk-content:3.8.0'
implementation 'com.timehop.stickyheadersrecyclerview:library:0.4.2@aar'
implementation 'com.github.orangegangsters:swipy:1.2.3@aar'
implementation project(':sample-core')
// implementation 'com.jwang123.flagkit:flagkit:1.0'
}
apply plugin: 'com.google.gms.google-services'
apply plugin: 'io.fabric'
//GoogleServicesPlugin.config.disableVersionCheck = true
Can anyone guide me how to solve this issue.
I have been searching stackoverflow from last two days for the solution of this issue. Please help.
edited Nov 14 '18 at 4:49
divaPrajapati09
asked Nov 13 '18 at 13:37
divaPrajapati09divaPrajapati09
879
879
which library can you use ??
– Ali
Nov 13 '18 at 13:41
I'm guessing there is some inconsistency between version numbers. Share your build.gradle file
– ZUNJAE
Nov 13 '18 at 13:43
This is because of different versions of same library in your project. Check for warnings in build.gradle, it helps alot in these cases.
– Anurag Chutani
Nov 13 '18 at 13:47
@ZUNJAE please check i have added the gradle file
– divaPrajapati09
Nov 14 '18 at 4:51
add a comment |
which library can you use ??
– Ali
Nov 13 '18 at 13:41
I'm guessing there is some inconsistency between version numbers. Share your build.gradle file
– ZUNJAE
Nov 13 '18 at 13:43
This is because of different versions of same library in your project. Check for warnings in build.gradle, it helps alot in these cases.
– Anurag Chutani
Nov 13 '18 at 13:47
@ZUNJAE please check i have added the gradle file
– divaPrajapati09
Nov 14 '18 at 4:51
which library can you use ??
– Ali
Nov 13 '18 at 13:41
which library can you use ??
– Ali
Nov 13 '18 at 13:41
I'm guessing there is some inconsistency between version numbers. Share your build.gradle file
– ZUNJAE
Nov 13 '18 at 13:43
I'm guessing there is some inconsistency between version numbers. Share your build.gradle file
– ZUNJAE
Nov 13 '18 at 13:43
This is because of different versions of same library in your project. Check for warnings in build.gradle, it helps alot in these cases.
– Anurag Chutani
Nov 13 '18 at 13:47
This is because of different versions of same library in your project. Check for warnings in build.gradle, it helps alot in these cases.
– Anurag Chutani
Nov 13 '18 at 13:47
@ZUNJAE please check i have added the gradle file
– divaPrajapati09
Nov 14 '18 at 4:51
@ZUNJAE please check i have added the gradle file
– divaPrajapati09
Nov 14 '18 at 4:51
add a comment |
1 Answer
1
active
oldest
votes
Ensure that your top-level build.gradle contains a reference to the google() repo or to maven { url "https://maven.google.com" }.
remove this from your build.gradle file and sync again
apply plugin: 'com.google.gms.google-services'
This is required for using crashlytics...removing this is giving compile time issue
– divaPrajapati09
Nov 14 '18 at 5:15
Please check this document for crashlytics. No need to use apply plugin: 'com.google.gms.google-services. firebase.google.com/docs/crashlytics/get-started#android
– Sultan Mahmud
Nov 14 '18 at 5:19
ok done..finally resolved...although need to change few things as per my project requirement.
– divaPrajapati09
Nov 14 '18 at 5:44
i compulsory require google play service plugin for using implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6' else it is giving me the error like " Crashlytics found an invalid API key: null. Check the Crashlytics plugin to make sure that the application has been added successfully! Contact support@fabric.io for assistance." Can you help with this - @Sultan Mahmud
– divaPrajapati09
Nov 15 '18 at 5:21
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%2f53282265%2fapp-crashes-after-upgrading-dependecies-to-latest-version-in-android%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Ensure that your top-level build.gradle contains a reference to the google() repo or to maven { url "https://maven.google.com" }.
remove this from your build.gradle file and sync again
apply plugin: 'com.google.gms.google-services'
This is required for using crashlytics...removing this is giving compile time issue
– divaPrajapati09
Nov 14 '18 at 5:15
Please check this document for crashlytics. No need to use apply plugin: 'com.google.gms.google-services. firebase.google.com/docs/crashlytics/get-started#android
– Sultan Mahmud
Nov 14 '18 at 5:19
ok done..finally resolved...although need to change few things as per my project requirement.
– divaPrajapati09
Nov 14 '18 at 5:44
i compulsory require google play service plugin for using implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6' else it is giving me the error like " Crashlytics found an invalid API key: null. Check the Crashlytics plugin to make sure that the application has been added successfully! Contact support@fabric.io for assistance." Can you help with this - @Sultan Mahmud
– divaPrajapati09
Nov 15 '18 at 5:21
add a comment |
Ensure that your top-level build.gradle contains a reference to the google() repo or to maven { url "https://maven.google.com" }.
remove this from your build.gradle file and sync again
apply plugin: 'com.google.gms.google-services'
This is required for using crashlytics...removing this is giving compile time issue
– divaPrajapati09
Nov 14 '18 at 5:15
Please check this document for crashlytics. No need to use apply plugin: 'com.google.gms.google-services. firebase.google.com/docs/crashlytics/get-started#android
– Sultan Mahmud
Nov 14 '18 at 5:19
ok done..finally resolved...although need to change few things as per my project requirement.
– divaPrajapati09
Nov 14 '18 at 5:44
i compulsory require google play service plugin for using implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6' else it is giving me the error like " Crashlytics found an invalid API key: null. Check the Crashlytics plugin to make sure that the application has been added successfully! Contact support@fabric.io for assistance." Can you help with this - @Sultan Mahmud
– divaPrajapati09
Nov 15 '18 at 5:21
add a comment |
Ensure that your top-level build.gradle contains a reference to the google() repo or to maven { url "https://maven.google.com" }.
remove this from your build.gradle file and sync again
apply plugin: 'com.google.gms.google-services'
Ensure that your top-level build.gradle contains a reference to the google() repo or to maven { url "https://maven.google.com" }.
remove this from your build.gradle file and sync again
apply plugin: 'com.google.gms.google-services'
answered Nov 14 '18 at 5:02
Sultan MahmudSultan Mahmud
23017
23017
This is required for using crashlytics...removing this is giving compile time issue
– divaPrajapati09
Nov 14 '18 at 5:15
Please check this document for crashlytics. No need to use apply plugin: 'com.google.gms.google-services. firebase.google.com/docs/crashlytics/get-started#android
– Sultan Mahmud
Nov 14 '18 at 5:19
ok done..finally resolved...although need to change few things as per my project requirement.
– divaPrajapati09
Nov 14 '18 at 5:44
i compulsory require google play service plugin for using implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6' else it is giving me the error like " Crashlytics found an invalid API key: null. Check the Crashlytics plugin to make sure that the application has been added successfully! Contact support@fabric.io for assistance." Can you help with this - @Sultan Mahmud
– divaPrajapati09
Nov 15 '18 at 5:21
add a comment |
This is required for using crashlytics...removing this is giving compile time issue
– divaPrajapati09
Nov 14 '18 at 5:15
Please check this document for crashlytics. No need to use apply plugin: 'com.google.gms.google-services. firebase.google.com/docs/crashlytics/get-started#android
– Sultan Mahmud
Nov 14 '18 at 5:19
ok done..finally resolved...although need to change few things as per my project requirement.
– divaPrajapati09
Nov 14 '18 at 5:44
i compulsory require google play service plugin for using implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6' else it is giving me the error like " Crashlytics found an invalid API key: null. Check the Crashlytics plugin to make sure that the application has been added successfully! Contact support@fabric.io for assistance." Can you help with this - @Sultan Mahmud
– divaPrajapati09
Nov 15 '18 at 5:21
This is required for using crashlytics...removing this is giving compile time issue
– divaPrajapati09
Nov 14 '18 at 5:15
This is required for using crashlytics...removing this is giving compile time issue
– divaPrajapati09
Nov 14 '18 at 5:15
Please check this document for crashlytics. No need to use apply plugin: 'com.google.gms.google-services. firebase.google.com/docs/crashlytics/get-started#android
– Sultan Mahmud
Nov 14 '18 at 5:19
Please check this document for crashlytics. No need to use apply plugin: 'com.google.gms.google-services. firebase.google.com/docs/crashlytics/get-started#android
– Sultan Mahmud
Nov 14 '18 at 5:19
ok done..finally resolved...although need to change few things as per my project requirement.
– divaPrajapati09
Nov 14 '18 at 5:44
ok done..finally resolved...although need to change few things as per my project requirement.
– divaPrajapati09
Nov 14 '18 at 5:44
i compulsory require google play service plugin for using implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6' else it is giving me the error like " Crashlytics found an invalid API key: null. Check the Crashlytics plugin to make sure that the application has been added successfully! Contact support@fabric.io for assistance." Can you help with this - @Sultan Mahmud
– divaPrajapati09
Nov 15 '18 at 5:21
i compulsory require google play service plugin for using implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6' else it is giving me the error like " Crashlytics found an invalid API key: null. Check the Crashlytics plugin to make sure that the application has been added successfully! Contact support@fabric.io for assistance." Can you help with this - @Sultan Mahmud
– divaPrajapati09
Nov 15 '18 at 5:21
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%2f53282265%2fapp-crashes-after-upgrading-dependecies-to-latest-version-in-android%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
which library can you use ??
– Ali
Nov 13 '18 at 13:41
I'm guessing there is some inconsistency between version numbers. Share your build.gradle file
– ZUNJAE
Nov 13 '18 at 13:43
This is because of different versions of same library in your project. Check for warnings in build.gradle, it helps alot in these cases.
– Anurag Chutani
Nov 13 '18 at 13:47
@ZUNJAE please check i have added the gradle file
– divaPrajapati09
Nov 14 '18 at 4:51