mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
17 lines
574 B
Java
17 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);
|
||
|
}
|
||
|
}
|