CrackMe.apk

Download file
    package androidx.appcompat.widget;

import android.graphics.Rect;

public interface FitWindowsViewGroup {

    public interface OnFitSystemWindowsListener {
        void onFitSystemWindows(Rect rect);
    }

    void setOnFitSystemWindowsListener(OnFitSystemWindowsListener onFitSystemWindowsListener);
}
    
Download file