I am developing an Android app together with Firebase. And in the Firebase console in the Project Settings section I get an App ID. My question is: how can I get that ID but from my Android application?
Thank you.
I already did it, I did it like this:
// declaro la variable
public static FirebaseApp fbApp;
...
// obtengo la instancia
fbApp = FirebaseApp.getInstance();
...
//asigno el valor
lblClave.setText(fbApp.getOptions().getApplicationId());