blob: e42956a0872d9cb66cf0075f78316453aa144b45 [file] [log] [blame]
package com.airbnb.lottie;
import androidx.annotation.Nullable;
/**
* @see LottieCompositionFactory
* @see LottieResult
*/
@Deprecated
public interface OnCompositionLoadedListener {
/**
* Composition will be null if there was an error loading it. Check logcat for more details.
*/
void onCompositionLoaded(@Nullable LottieComposition composition);
}