CrackMe.apk

Download file
    package com.facebook.fresco.animation.backend;

public interface AnimationInformation {
    public static final int LOOP_COUNT_INFINITE = 0;

    int getFrameCount();

    int getFrameDurationMs(int i);

    int getLoopCount();
}
    
Download file