Android Question Getting list of installed applications in Android device

Rodrigo Muñoz

Member
Licensed User
Longtime User
Is it possible to get a list of all the applications installed in an Android device? If yes, how?
 

ThRuST

Well-Known Member
Licensed User
Longtime User
Hello Rodrigo. You might want to read the installed applications into a List:

Dim PM As PackageManager
Dim iStr As String
Dim Packages As List

Packages = PM.GetInstalledPackages

For i = 0 To Packages.size - 1
iStr=Packages.Get(i)
Next
 
Upvote 0
Top