I\'m new to android development, since a long time, I\'m stuck in one error that is Run your app to verify installation (Checking if the app has communicated with our servers. Y
I solved updating the SDK Tools: Preferences -> Appearance & Behavior -> System Settings -> Updates, then click on "Check Now".
When the update was completed I uninstalled the app from the emulator, quitted both Android Studio and emulator and ran again
In my case the problem was that in the gradle file at project level, I had set the latest google-services, which at the time of this answer is 4.3.0:
classpath 'com.google.gms:google-services:4.3.0'
Then I noticed that in the Firebase wizard, the configuration steps showed instead a previous version: 4.2.0
Changing my gradle one to match the same version as shown in the Firebase configuration wizard solved the problem.
Note: so, my conclusion is that regardless of which one is the latest google-services version, (and the versions we talk about in this stack-overflow question and answer), we should always use the version shown in the Firebase wizard configuration steps.
I followed every step, but i didn't work. So I contacted the Firebase support and got the following answer:
Thanks for reaching out, Simon.
I'd recommend just skipping that step altogether. The app should have already been successfully added and to verify that Firebase is working, it'd be better to directly test whichever service you're trying to use.
Let me know if you have any other questions/issues.
---- Update 2020-01-20 ----
I found out that someone of my colleagues added this snippet in the AndroidManifest.xml a couple of years ago. After enabling analytics again I got the expected behaviour in the Firebase console.
<meta-data
android:name="firebase_analytics_collection_deactivated"
android:value="true" />
Follow the exact version mentioned in Waizard, It will show success.
Its worked for me.
You are not stucked my friend, just follow this steps: 1. Go to your android studio project and click on Main_activity.xml to show your app 2. click run menu and run the app either in a real device or an emulator 3. when it has loaded the app, then your connection will be successful in firebase
Make sure you:
And this official documentation helped me a lot (I just followed all the steps).