CrackMe.apk

Download file
    package com.facebook.react.bridge;

public interface JavaScriptExecutorFactory {
    JavaScriptExecutor create() throws Exception;

    void startSamplingProfiler();

    void stopSamplingProfiler(String str);
}
    
Download file