android.content.pm.PackageInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.content.pm;
public class PackageInfo
implements android.os.Parcelable
{
public PackageInfo() { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public int describeContents() { throw new RuntimeException("Stub!"); }
public void writeToParcel(android.os.Parcel dest, int parcelableFlags) { throw new RuntimeException("Stub!"); }
public java.lang.String packageName;
public int versionCode;
public java.lang.String versionName;
public java.lang.String sharedUserId;
public int sharedUserLabel;
public android.content.pm.ApplicationInfo applicationInfo;
public int[] gids = null;
public android.content.pm.ActivityInfo[] activities = null;
public android.content.pm.ActivityInfo[] receivers = null;
public android.content.pm.ServiceInfo[] services = null;
public android.content.pm.ProviderInfo[] providers = null;
public android.content.pm.InstrumentationInfo[] instrumentation = null;
public android.content.pm.PermissionInfo[] permissions = null;
public java.lang.String[] requestedPermissions = null;
public android.content.pm.Signature[] signatures = null;
public android.content.pm.ConfigurationInfo[] configPreferences = null;
public static final android.os.Parcelable.Creator CREATOR;
static { CREATOR = null; }
}