CrackMe.apk

Download file
    package com.google.firebase.components;

public class InvalidRegistrarException extends RuntimeException {
    public InvalidRegistrarException(String str) {
        super(str);
    }

    public InvalidRegistrarException(String str, Throwable th) {
        super(str, th);
    }
}
    
Download file