读取本地APK文件的PackageInfo等信息简单使用方式
public void checkAPKIsExists(Context context, String downloadPath) { File file = new File(downloadPath); boolean result = false; if (file.exists()) { PackageMa...