Android Question PackageManager does not return all installed apps

tsteward

Well-Known Member
Licensed User
Longtime User
In the code below the list apps does not contain all the apps installed.
"com.ecartek.en.kd" definately exists but is not returned in the list.

Am I doing something wrong? It does return 300 odd other apps

Dim pm As PackageManager Dim apps As List apps.Initialize apps = pm.GetInstalledPackages If apps.IndexOf("com.ecartek.en.kd") > -1 Then lst1i.Add("Launch KeyDIY App") End If
 

agraham

Expert
Licensed User
Longtime User
Upvote 2
Top