Hi,
I'm looking for a way to get indication that an application (any app) has been installed/uninstalled in the device.
Scanning Installed Apps with PackageManager is too slow and intensive.
Sub Activity_Create(FirstTime As Boolean)
Dim p As PackageManager
Dim t As Long = DateTime.Now
Dim all As List = p.GetInstalledPackages
Log(DateTime.Now - t)
End Sub
You only need to do it once so it shouldn't be too slow.