CrackMe.apk

Download file
    package expo.modules.core.interfaces;

public interface Function<T, R> {
    R apply(T t);
}
    
Download file