CrackMe.apk

Download file
    package com.facebook.jni;

public class CppSystemErrorException extends CppException {
    int errorCode;

    public CppSystemErrorException(String str, int i) {
        super(str);
        this.errorCode = i;
    }

    public int getErrorCode() {
        return this.errorCode;
    }
}
    
Download file