All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.faker.android.JavaSrcExclusion Maven / Gradle / Ivy

There is a newer version: 1.0.38
Show newest version
package com.faker.android;

import java.io.File;

public class JavaSrcExclusion implements ClassExclusion{
    File baseDir;
    public JavaSrcExclusion(File baseDir) {
        this.baseDir = baseDir;
    }
    @Override
    public boolean exclude(String smaliFileName) {//TODO
        String preName = null;

        if(smaliFileName.contains("$")){
            preName = smaliFileName.split("\\$")[0];
        }else {
            preName = smaliFileName.substring(0,smaliFileName.lastIndexOf("."));
        }
        File fileJava = new File(baseDir,preName+".java");
        if(fileJava.exists()){
            System.out.println("Java class is exsit "+fileJava.getAbsolutePath() +"this smali file exclude "+smaliFileName);
            return true;
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy