CrackMe.apk

Download file
    package androidx.core.util;

public interface Consumer<T> {
    void accept(T t);
}
    
Download file