CrackMe.apk

Download file
    package com.facebook.react.bridge;

interface ReactCallback {
    void decrementPendingJSCalls();

    void incrementPendingJSCalls();

    void onBatchComplete();
}
    
Download file