blob: 7f30be601f1bf20e8e00ada811f86bfe8f94c8b4 [file] [log] [blame]
package com.airbnb.lottie.samples;
import android.app.Application;
import android.support.v4.util.Pair;
public class LottieApplication extends Application implements ILottieApplication {
@Override
public void startRecordingDroppedFrames() {
}
@Override
public Pair<Integer, Long> stopRecordingDroppedFrames() {
return new Pair<>(0, 0L);
}
}