blob: b35607e6b6d3112bfb2d7a483f99b8466a49f7a0 [file] [log] [blame]
package com.airbnb.lottie
import android.content.Context
import android.util.AttributeSet
class NoCacheLottieAnimationView @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0
) : LottieAnimationView(context, attrs, defStyleAttr) {
override fun buildDrawingCache(autoScale: Boolean) {
// Prevent the cache from getting generated.
}
}