How do I check if an app is a non-system app in Android?

后端 未结 13 1245
无人共我
无人共我 2020-11-28 22:51

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

13条回答
  •  庸人自扰
    2020-11-28 23:36

    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();
    }
    

提交回复
热议问题