Any pointers on how to list all the usable applications installed so I can add to a list view.
I had an idea of searching directories for *.apk files and then opening the androidmainifest.xml file to get app data and icon location. If I use File.DirInternal it does not go high enough in the directory to allow finding apk files. Any ideas?
The Android file system will not allow you to go to other applications folders.
Again with Shell you can call 'pm' (package manager), I believe that there is an option to list all.
This has been driving me crazy. I basically want to create a simple menu application with user defined applications in. So I need to know all installed apps, there location, and the icon png file. Ive racked my brains to try and find a way around the security permissions but had no joy. Ive seen other similar applications so I know its possible just cant figure out how. Can anyone shed any light or pointers on how they did it?