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

net.dongliu.apk.parser.struct.resource.LibraryEntry Maven / Gradle / Ivy

There is a newer version: 2.6.10
Show newest version
package net.dongliu.apk.parser.struct.resource;

/**
 * Library chunk entry
 *
 * @author Liu Dong
 */
public class LibraryEntry {
    // uint32. The package-id this shared library was assigned at build time.
    private int packageId;

    //The package name of the shared library. \0 terminated. max 128
    private String name;

    public LibraryEntry(int packageId, String name) {
        this.packageId = packageId;
        this.name = name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy