Lottie Animation(Android) : White Strokes are visible in the background of the image

Hi,

I am new to Lottie integration and we have a requirement to integrate a Lottie file in the Android application. In Lottie previewer and in the application, there are some extra white strokes visible in the background of the image.

code snippet used for animation:
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/animation_view"
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:lottie_rawRes="@raw/splash"
app:lottie_autoPlay=“true”
android:scaleType=“centerCrop”
app:lottie_loop=“false”
/>
animationView.setAnimation(R.raw.splash)
animationView.playAnimation()
animationView.loop(false)

Do I need to include any fonts, images from adobe after effects in code?
Your help is much appreciated.

Thank you.