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

com.github.unidbg.linux.android.dvm.apk.ApkFactory Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.github.unidbg.linux.android.dvm.apk;

import java.io.File;

public class ApkFactory {

    public static Apk createApk(File file) {
        return file.isDirectory() ? new ApkDir(file) : new ApkFile(file);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy