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

android.content.pm.PackageParser Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package android.content.pm;

import java.io.File;

public class PackageParser {
	public static class PackageLite {
		public final String packageName = null;
	}

	/** Before SDK21 */
	public static PackageLite parsePackageLite(String packageFile, int flags) {
		throw new UnsupportedOperationException("STUB");
	}

	/** Since SDK21 */
	public static PackageLite parsePackageLite(File packageFile, int flags) throws PackageParserException {
		throw new UnsupportedOperationException("STUB");
	}

	/** Since SDK21 */
	@SuppressWarnings("serial")
	public static class PackageParserException extends Exception {
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy