简体   繁体   中英

How to find out name package not installed apk?

How to find out name package not installed apk?

Runtime.getRuntime().exec(new String[]{"su", "-c","aapt dump badging /sdcard/Downloads/ASD.apk grep package:\\ name ->"+"/sdcard/asd"}).waitFor();

Not Working. aapt not found;

You can use PackageManager :

    PackageInfo info = context.getPackageManager().getPackageArchiveInfo(apkFileName, 0);
    ApplicationInfo appinfo = info.applicationInfo;
    final String packageName = context.getPackageManager().getApplicationLabel(appinfo).toString();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM