CrackMe.apk

Download file
    package io.invertase.firebase.interfaces;

import com.facebook.react.bridge.WritableMap;

public interface NativeError {
    String getErrorCode();

    String getErrorMessage();

    String getFirebaseAppName();

    String getFirebaseServiceName();

    WritableMap getUserInfo();
}
    
Download file