You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use google ad manager to serve my ads and appcenter for analytics. I dont want to link and use firebase's google-services.json.
It should be possible to initialize firebase without the json config: https://stackoverflow.com/questions/41160608/google-admob-for-android-without-google-services-json FirebaseOptions firebaseOptions = new FirebaseOptions.Builder() .setApiKey(apiKey) .setApplicationId(context.getString(R.string.google_app_id)) .build(); return FirebaseApp.initializeApp(context, firebaseOptions, "MyApp");
But not sure if this is possible with this plugin and how?
The text was updated successfully, but these errors were encountered:
I use google ad manager to serve my ads and appcenter for analytics. I dont want to link and use firebase's google-services.json.
It should be possible to initialize firebase without the json config: https://stackoverflow.com/questions/41160608/google-admob-for-android-without-google-services-json
FirebaseOptions firebaseOptions = new FirebaseOptions.Builder() .setApiKey(apiKey) .setApplicationId(context.getString(R.string.google_app_id)) .build(); return FirebaseApp.initializeApp(context, firebaseOptions, "MyApp");
But not sure if this is possible with this plugin and how?
The text was updated successfully, but these errors were encountered: