Hi
I was using this classic snipped to detect if user has WhatsApp installed. But I tried today on a mew Xiaomi, with no luck. After looking (logging) all the list, it seems that it only lists the system apps but not third party. I know I have whatsapp, telegram, facebook, instagram installed, but none of them show up on the list. Is it hidden withing Xiaomi MUI?
Thanks
I was using this classic snipped to detect if user has WhatsApp installed. But I tried today on a mew Xiaomi, with no luck. After looking (logging) all the list, it seems that it only lists the system apps but not third party. I know I have whatsapp, telegram, facebook, instagram installed, but none of them show up on the list. Is it hidden withing Xiaomi MUI?
B4X:
Dim pm As PackageManager 'phone library
For Each pck As String In pm.GetInstalledPackages
'Dim name As String = pm.GetApplicationLabel(pck)
If pck.ToLowerCase.Contains("whatsapp") Then
Log(True)
End If
Next