CrackMe.apk

Download file
    package com.google.common.util.concurrent;

@ElementTypesAreNonnullByDefault
public interface AsyncFunction<I, O> {
    ListenableFuture<O> apply(@ParametricNullness I i) throws Exception;
}
    
Download file