I want to get the list of apps installed and its usage on iOS device. I have searched for this and found few solutions.
- Using IHasApp framework that returns only the list of apps which has used custom URL Scheme in it. Rest of the apps that doesn't implement custom URL Scheme are not listed.
- I have seen we can get the result with the help of AppList framework. But there's no instruction how to use that framework into our project. https://github.com/rpetrich/AppList
- Using SpringBoardServices framework - for this I am following below link, and the result I get from this is the list of running processes (pid, appid, pname, etc) I am not sure If I can get the list of apps name with the help of this information. how to determine which apps are background and which app is foreground on iOS by application id
Few other links I have tried
Getting global list of all ios apps
https://stackoverflow.com/questions/2689711/itunes-app-store-api
how to get the list of apps Name installed in the iPhone
But nothing helps
Please can someone assist if you know, I don't mind using private frameworks to get the list of apps installed and its usage.