Android APK Information Get getAppPkg(Context c, int uid)

Here you can find the source of getAppPkg(Context c, int uid)

Description

get App Pkg

Declaration

public static String getAppPkg(Context c, int uid)
            throws NullPointerException 

Method Source Code

//package com.java2s;

import android.content.Context;

import android.content.pm.PackageManager;

public class Main {
    public static String getAppPkg(Context c, int uid)
            throws NullPointerException {
        PackageManager pm = c.getPackageManager();
        String name = pm.getPackagesForUid(uid)[0];
        return name;
    }//from www.ja va 2s  .com
}

Related

  1. getAppInfo(Context c, String name)
  2. getAppInfo(Context c, String name)
  3. getAppLabel(Context c, int uid)
  4. getAppLabel(Context c, int uid)
  5. getAppPkg(Context c, int uid)
  6. getNameApkInstalledFile(String packageName, int type)
  7. isAppPlatformSignature(Context ctx)
  8. isApplicationBroughtToBackground(Context context)
  9. isApplicationSentToBackground( final Context context)