CrackMe.apk

Download file
    package expo.modules.core.interfaces;

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