请帮忙,如果我向它添加firebase远程配置,我将无法构建我的项目。
我有三种产品风格,我添加了这些依赖项以便能够支持回 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'
如果我删除这些行,我可以构建项目。
对于我的正常口味,我添加了播放服务和远程配置,如下所示:
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'
- 无论如何,这是我所有的依赖项:https ://pastebin.com/EPRYyKH6
- 这是我的主要 gradle 文件:https ://pastebin.com/tq7QZ9Hw
- 和完整的 build.gradle(app):https ://pastebin.com/R2k0Lagp
我该如何解决?