Initializing Firebase In Modulair Android Project Written In Kotlin Gives Not Initialized Error
I'm having difficulty trying to implement firebase into an modulair android project written in kotlin. My structure looks like this: App Feature Base And then in my main act
Solution 1:
The com.google.gms.google-services
Gradle plugin only works with modules that are Android application modules that apply the com.android.application
plugin. It doesn't work with library modules or feature modules.
When you apply the google-services plugin, it will make changes to your app that allow it to initialize automatically, using information found in your google-services.json file.
Post a Comment for "Initializing Firebase In Modulair Android Project Written In Kotlin Gives Not Initialized Error"