Rabbit-R1/switch port/java/sources/com/airbnb/lottie/Lottie.java
2024-05-21 17:08:36 -04:00

16 lines
574 B
Java

package com.airbnb.lottie;
/* loaded from: classes2.dex */
public class Lottie {
private Lottie() {
}
public static void initialize(LottieConfig lottieConfig) {
L.setFetcher(lottieConfig.networkFetcher);
L.setCacheProvider(lottieConfig.cacheProvider);
L.setTraceEnabled(lottieConfig.enableSystraceMarkers);
L.setNetworkCacheEnabled(lottieConfig.enableNetworkCache);
L.setDisablePathInterpolatorCache(lottieConfig.disablePathInterpolatorCache);
L.setDefaultAsyncUpdates(lottieConfig.defaultAsyncUpdates);
}
}