-
Notifications
You must be signed in to change notification settings - Fork 655
Closed
Description
- Android Studio version: Build #AI-252.27397.103.2522.14425743
- Firebase Component: Crashlytics
- Component version: 3.0.2
Hi I’m using multiple Firebase configurations in my project that change at runtime. The setup follows the approach described here: #66 — meaning I’m using a ResourcesWrapper, removing the Google Services plugin, and not using any google-services.json files.
The issue is that when I run the Gradle task uploadCrashlyticsMappingFile, I get the error “Google-Services plugin not configured properly”, which happens because the google-services plugin is removed.
Has anyone encountered this problem and managed to solve it?
I tried restoring the plugin and adding the following to the manifest:
<provider
android:name="com.google.firebase.provider.FirebaseInitProvider"
android:authorities="${applicationId}.firebaseinitprovider"
tools:node="remove" />
However, I still get the error: “File google-services.json is missing.”