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

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

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

/**
 * Parse apk file from byte array.
 * This class is not thread-safe.
 *
 * @author Liu Dong
 * @deprecated using {@link ByteArrayApkFile} instead
 */
@Deprecated
public class ByteArrayApkParser extends ByteArrayApkFile {

    public ByteArrayApkParser(byte[] apkData) {
        super(apkData);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy