14 lines
352 B
Java
14 lines
352 B
Java
|
package com.airbnb.lottie;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class Lottie {
|
||
|
private Lottie() {
|
||
|
}
|
||
|
|
||
|
public static void initialize(LottieConfig lottieConfig) {
|
||
|
L.setFetcher(lottieConfig.networkFetcher);
|
||
|
L.setCacheProvider(lottieConfig.cacheProvider);
|
||
|
L.setTraceEnabled(lottieConfig.enableSystraceMarkers);
|
||
|
}
|
||
|
}
|