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

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

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

/**
 * String encoding.
 * If you create an Android project using the Eclipse ADT plugin the string data in the StringPool
 * chunks in the Resource Table will be in the UTF-8 format.
 * 

* If you create an Android project using the android command line tool and then build it from * the command line using ant the string data in the StringPool chunks in the Resource Table * will be in the 16-bit format. *

* Strange but true. * * @author dongliu */ public enum StringEncoding { UTF16, UTF8 }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy