com.android.builder.dexing.FakerDexTools Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
fakeradnroid gradle builder
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() {
}
}