I am getting a list of ApplicationInfo Objects with packageManager.getInstalledApplications(0) and attempting to categorize them by whether or not they are a sy
ApplicationInfo
If having an APK file and want to check is it System app or User installed a Simple logic:- System app Files are not writable
private boolean isSystemApkFile(File file){ return !file.canWrite(); }