CrackMe.apk

Download file
    package javax.inject;

public interface Provider<T> {
    T get();
}
    
Download file