CrackMe.apk

Download file
    package com.facebook.imagepipeline.animated.base;

import android.graphics.Bitmap;

public interface AnimatedImageFrame {
    void dispose();

    int getDurationMs();

    int getHeight();

    int getWidth();

    int getXOffset();

    int getYOffset();

    void renderFrame(int i, int i2, Bitmap bitmap);
}
    
Download file