INNER CODE UNIT · Java

getAssetsFolder

kezong/fat-aar-android · source/src/main/java/com/kezong/fataar/AndroidArchiveLibrary.java:62

    public File getAssetsFolder() {
        return new File(getRootFolder(), "assets");
    }

    public File getLibsFolder() {
        return new File(getRootFolder(), "libs");
    }

    public File getClassesJarFile() {
        return new File(getRootFolder(), "classes.jar");
    }

    public Collection<File> getLocalJars() {
        List<File> localJars = new ArrayList<>();
        File[] jarList = getLibsFolder().listFiles();
        if (jarList != null) {
            for (File jars : jarList) {
                if (jars.isFile() && jars.getName().endsWith(".jar")) {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…