Build a eye catching Splash screen in few seconds with lottie animations
Resources:
Download Animations files from
https://lottiefiles.com
Android Dependency
def lottieVersion = "3.4.0"
implementation "com.airbnb.android:lottie:$lottieVersion"
XML Code
com.airbnb.lottie.LottieAnimationView
android:id="@+id/animationView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
app:lottie_rawRes="@raw/splash_anim"
app:lottie_autoPlay="true"
app:lottie_loop="true"