Skip to content Skip to sidebar Skip to footer

Googleservice Failed To Initialize, Status: 10, Missing Google App Id Value From From String Resources With Name Google_app_id

Im getting this error out of nowhere it used to work just fine. Here is what i have: in app.gradle dependencies: implementation 'com.google.firebase:firebase-core:16.0.1' implement

Solution 1:

After updating to Android Studio 3.3 I started getting the same error. It turns out version 4.1.0 of com.google.gms:google-services had a known issue in Android Studio 3.3.

Updating to com.google.gms:google-services:4.2.0 solved the problem for me.

Solution 2:

I got the same error, not sure what's the root cause, but as a workaround found a solution.

Downgrade classpath 'com.google.gms:google-services:4.1.0' to classpath 'com.google.gms:google-services:4.0.0' and it should work, at least it did for me.

Post a Comment for "Googleservice Failed To Initialize, Status: 10, Missing Google App Id Value From From String Resources With Name Google_app_id"