Hello,
with the following snippet i am able to get a list of all packages on my phone:
But how to get a list of all packages installed by the user? (all Apps i am able to uninstall)
Thanks & Greetings ... Kiffi
with the following snippet i am able to get a list of all packages on my phone:
B4X:
Dim pm As PackageManager
Dim packages As List
packages = pm.GetInstalledPackages
For i = 0 To packages.Size - 1
Log(packages.Get(i))
Next
But how to get a list of all packages installed by the user? (all Apps i am able to uninstall)
Thanks & Greetings ... Kiffi