CrackMe.apk

Download file
    package com.facebook.react.devsupport.interfaces;

import org.json.JSONObject;

public interface StackFrame {
    int getColumn();

    String getFile();

    String getFileName();

    int getLine();

    String getMethod();

    boolean isCollapsed();

    JSONObject toJSON();
}
    
Download file