Parth Patel
Parth Patel

Reputation: 6788

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'
    compile 'com.android.support:design:23.4.0'
    compile 'com.android.support:cardview-v7:23.4.0'
    compile 'com.android.support:support-v4:23.4.0'
    compile 'com.github.castorflex.smoothprogressbar:library:1.1.0'
    compile 'com.google.android.gms:play-services:9.0.2'
    compile 'com.google.firebase:firebase-core:9.0.2'
    compile 'com.google.firebase:firebase-analytics:9.0.2'
    compile 'com.google.firebase:firebase-ads:9.0.2'
    compile 'com.google.firebase:firebase-crash:9.0.2'
    compile 'com.google.firebase:firebase-messaging:9.0.2'
}
apply plugin: 'com.google.gms.google-services'

app freezes when the app resumes. it gives anr (activity not responding) error.

is there any problem with play services 9.0+ or with firebase ?

Upvotes: 12

Views: 3384

Answers (3)

user15639764
user15639764

Reputation: 1

Just add this line to dependencies:

implementation 'com.firebaseui:firebase-ui-auth:7.1.1'

Upvotes: 0

art
art

Reputation: 115

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.

Upvotes: 0

Parth Patel
Parth Patel

Reputation: 6788

I was solved the issue by removing the line

compile 'com.google.android.gms:play-services:9.0.2'

Upvotes: 6

Related Questions