Android App Freezes After Implementing Google Firebase
Here is my build.gradle dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.4.0
Solution 1:
I was solved the issue by removing the line
compile'com.google.android.gms:play-services:9.0.2'
Solution 2:
Seems to be the same issue as this: Firebase Crash produces ANR during launch
The official fix for the incident is an update to the Google Play Services which should be rolling out now.
We've fixed the issue with Firebase Crash initialization in Google Play Services 9.6.83. Users should receive the update sometime within the next two days. We will conduct an internal investigation of this issue and make appropriate improvements to our systems to prevent or minimize future recurrence.
Solution 3:
Just add this line to dependencies:
implementation 'com.firebaseui:firebase-ui-auth:7.1.1'
Post a Comment for "Android App Freezes After Implementing Google Firebase"