CrackMe.apk

Download file
    package androidx.browser.customtabs;

import android.content.Context;
import android.os.Bundle;

public interface PostMessageBackend {
    void onDisconnectChannel(Context context);

    boolean onNotifyMessageChannelReady(Bundle bundle);

    boolean onPostMessage(String str, Bundle bundle);
}
    
Download file