CrackMe.apk

Download file
    package com.google.common.base;

@ElementTypesAreNonnullByDefault
interface PatternCompiler {
    CommonPattern compile(String str);

    boolean isPcreLike();
}
    
Download file