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

com.android.builder.dexing.FakerDexTools Maven / Gradle / Ivy

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

import java.io.IOException;
import java.nio.file.Path;
import java.util.Collection;
import java.util.List;

public class FakerDexTools {

    public static List getAllEntriesFromArchives(Collection inputs) throws IOException {
        return DexArchives.getAllEntriesFromArchives(inputs);
    }

    public static List  getEntriesFromSingleArchive(Path archivePath) throws IOException {
        return DexArchives.getEntriesFromSingleArchive(archivePath);
    }


    public static void Test() {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy