I used Lottie Animation inside the App. No issue with that.
But is it even possible to use it in Splash Screen? Now my splash screen has a Launcher theme that persists only the cold start duration.
<style name="AppTheme.Launcher">
<item name="android:windowBackground">@drawable/launcher_with_logo</item> <!--Also available: @drawable:launcher_screen_with_background-->
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
I want to do something like this Splash Screen of Crane provided by Google's Material Design Guideline.
So is there any way to do this by satisfying standard guidelines to create a splash screen(just show during cold start rather than setting a timer, which is ugly)?
same questions also asked here.