CrackMe.apk

Download file
    package javax.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import javax.annotation.meta.TypeQualifier;
import javax.annotation.meta.When;

@Documented
@Retention(RetentionPolicy.RUNTIME)
@TypeQualifier(applicableTo = CharSequence.class)
public @interface Syntax {
    String value();

    When when() default When.ALWAYS;
}
    
Download file