Google test users on Firebase auth

Viewed 1180

I have implemented google sign-in , and anonymous sign-in through firebase on my app.

Whenever I submit a new apk to google play console, google runs its tests and generates a pre-launch report, which is all nice, informative, and good.

The problem though, is that my firebase auth tab is filled with a lot of garbage anonymous users, and many different random google accounts.

Is there a way to delete these accounts? Or to specify which user should be used in the google sign-in flow?

3 Answers

You can specify your own test Google account (username + password) for Play Store to use to run your PLR tests. Or you can write and submit a robo-script to customize the app crawl even further.

PLR console

You can access the page to upload your Roboscript and/or specify sign-in credentials using the Settings tab.

enter image description here

you can find it under Testing => Pre-launch report => Settings

Related