CrackMe.apk

Download file
    package androidx.core.util;

public interface Predicate<T> {
    boolean test(T t);
}
    
Download file