CrackMe.apk

Download file
    package com.google.common.base;

@ElementTypesAreNonnullByDefault
public interface Supplier<T> {
    @ParametricNullness
    T get();
}
    
Download file