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

net.dongliu.apk.parser.ApkParser Maven / Gradle / Ivy

The newest version!
package net.dongliu.apk.parser;

import java.io.File;
import java.io.IOException;


/**
 * ApkParse and result holder.
 * This class is not thread-safe.
 *
 * @author dongliu
 * @deprecated use {@link net.dongliu.apk.parser.ApkFile} instead
 */
@Deprecated
public class ApkParser extends ApkFile {

    public ApkParser(File apkFile) throws IOException {
        super(apkFile);
    }

    public ApkParser(String filePath) throws IOException {
        super(filePath);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy