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); } }