How do I integrate Crashlytics with Android Instant Apps?
Does Crashlytics work with Google Play Instant and if so, how do you setup your project correctly? Yes, Crashlytics does work with Android Instant Apps, in fact it is the recommended crash reporting solution at this stage as it has been tested and works fine. For setup: Step 1 Open the build.gradle file in your base feature module and follow the steps on the public docs site to configure Crashlytics as normal. Step 2 At the top level of your base feature module build.gradle file, add the following Crashlytics flag: ... android { ... } crashlytics { instantAppSupport true } ... Step 3 (optional