hi
i have this sub
in sdk 30 works perfectly
in sdk 31 it does not - always returns false
how can i detect if an app is installed on the device ?
naturally i'm interested in sdk 31...
thanks
i have this sub
B4X:
Sub CheckAppInstalled(AppName As String) As Boolean
Dim pm As PackageManager
Dim in As Intent
in = pm.GetApplicationIntent(AppName)
If in.IsInitialized Then
Return True
Else
Return False
End If
End Sub
in sdk 30 works perfectly
in sdk 31 it does not - always returns false
how can i detect if an app is installed on the device ?
naturally i'm interested in sdk 31...
thanks