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

net.dongliu.apk.parser.struct.AndroidConstants Maven / Gradle / Ivy

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

/**
 * android system file.
 *
 * @author dongiu
 */
public class AndroidConstants {

    public static final String RESOURCE_FILE = "resources.arsc";

    public static final String MANIFEST_FILE = "AndroidManifest.xml";

    public static final String DEX_FILE = "classes.dex";

    public static final String RES_PREFIX = "res/";

    public static final String ASSETS_PREFIX = "assets/";

    public static final String LIB_PREFIX = "lib/";

    public static final String META_PREFIX = "META-INF/";

    public static final String ARCH_ARMEABI = "";
    /**
     * the binary xml file used system attr id.
     */
    public static final int ATTR_ID_START = 0x01010000;

    /**
     * the system style resource ids.
     */
    public static final int STYLE_ID_START = 0x01030000;


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy