I'm currently looking at an .apk for Android and I came across some hard-coded credentials (email address and password). Apparently these are used for something called FirebaseAuth
, which seems to be a Google service.
I'm not very familiar with the Android app development and don't know what the Firebase service is exactly used for.
Is it common to save hard-coded credentials for the service in the app?
What can be done with the credentials?
The credentials do not reflect any information affiliated with me.
I did come across this stackoverflow post, stating something about identifiers, but no clear answer.
edit: I believe my OP was not clear enough.
My question is whether it is normal for Firebase credentials to be stored in an APK or if generally something like an API token should be used.
Usually hard-coded credentials are a bad sign, but I'm not familiar with Firebase.