我尝试在更新之前跟踪系统应用程序并使用:
public static boolean isSystemApplication(Context ctx, IContent content) {
android.content.pm.PackageManager pm = ctx.getPackageManager();
List<android.content.pm.ApplicationInfo> apps = pm.getInstalledApplications(0);
for (android.content.pm.ApplicationInfo app : apps) {
if (app.packageName.equals(content.getContentPackage())) {
return (app.sourceDir.startsWith("/system/app/") && ((app.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP ) != 1));
}
}
return false;
}
但似乎 (app.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP ) != 1) 总是返回 true,即使系统应用程序已更新。