blob: 8258ba61c115e578a451a7e6b2ebb38839c9f7d9 [file] [log] [blame]
package com.airbnb.lottie.network;
import java.io.File;
import androidx.annotation.NonNull;
/**
* Interface for providing the custom cache directory where animations downloaded via url are saved.
* @see com.airbnb.lottie.Lottie#initialize
*/
public interface LottieNetworkCacheProvider {
/**
* Called during cache operations
*
* @return cache directory
*/
@NonNull File getCacheDir();
}