3

我尝试在更新之前跟踪系统应用程序并使用:

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,即使系统应用程序已更新。

4

1 回答 1

2

如果系统应用程序有更新,两者都(app.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP ) != 0)(app.flags & ApplicationInfo.FLAG_SYSTEM ) != 0)返回 true。

于 2012-11-12T06:47:48.663 回答