please help, I can't build my project if I add firebase remote config to it.
I've three product flavors, and I added these dependdencies to be able to support back to api level9
indexLegacyCompile 'com.google.android.gms:play-services-analytics:9.6.1'
indexLegacyCompile 'com.google.android.gms:play-services-location:9.6.1'
indexLegacyCompile 'com.google.android.gms:play-services-gcm:9.6.1'
if I remove these lines I can build the project.
For my normal flavor I added play services and remote config like this:
indexCompile 'com.google.android.gms:play-services-analytics:10.2.6'
indexCompile 'com.google.android.gms:play-services-location:10.2.6'
indexCompile 'com.google.android.gms:play-services-gcm:10.2.6'
indexCompile 'com.google.firebase:firebase-config:10.2.6'
- anyway here are all my dependencies: https://pastebin.com/EPRYyKH6
- and here is my main gradle file: https://pastebin.com/tq7QZ9Hw
- and full build.gradle(app): https://pastebin.com/R2k0Lagp
How can I solve it?