CrackMe.apk

Download file
    package com.google.common.collect;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@ElementTypesAreNonnullByDefault
@Documented
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@interface GwtTransient {
}
    
Download file