Fabric plugin incompatible with Gradle 4.4 +

本小妞迷上赌 提交于 2019-12-06 01:30:01

So my project included feature modules, where in the the base module's build.gradle, I apply the fabric plugin. i.e. apply plugin: 'io.fabric'

It turns out that gradle version 4.4 + does work but you need to add the following:

crashlytics { instantAppSupport true }

in your base module's build.gradle. I didn't actually have an instant app, but even with feature modules in appears that this line is needed.

More info on how this can be added can be found here: How do I integrate Crashlytics with Android Instant Apps?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!