If you want to completely remove firebase, you can achieve this by changing the configuration steps.
- Remove classpath 'com.google.gms: google-services: 3.0.0 from your gradle project.
- Remove compile 'com.google.firebase: firebase-core: 9.2.0' from your build.gradle application.
- Remove the apply plugin: "com.google.gms.google-services" at the bottom of your build.gradle file.
- Remove the FirebaseService code from your project.
- Remove google-services.json from your project.
- Remove the Google key from your manifest.
- Remove google key from your resource.
- Clear project.
- Build a project.
- Remove the installed application from the test device, and then install it again.
- UPDATE -
From fooobar.com/questions/557844 / ... :
I suggest you exclude the firebase group with gradle in the module build.gradle application, you can add this depending:
compile('com.google.android.gms:play-services-ads:9.0.2') { exclude group: 'com.google.firebase', module: 'firebase-common' } compile('com.google.android.gms:play-services-gcm:9.0.2') { exclude group: 'com.google.firebase', module: 'firebase-common' }
Or just apply the global exception configuration (remember that this should be outside of any groovy function), for example:
configurations { all*.exclude group: 'com.google.firebase', module: 'firebase-common' }
ישו אוהב אותך
source share