this code start an application, but how do i start skype, messenger play, and whatsapp?
. . . or open the list of applications installed on the device and then launch them from there.
:sign0148:
. . . or open the list of applications installed on the device and then launch them from there.
B4X:
Sub Button1_Click
Try
Dim pm As PackageManager
Dim i As Intent
i = pm.GetApplicationIntent ("com.facebook.katana")
StartActivity (i)
Catch
ToastMessageShow ("Failed to launch app! Is it installed?", True)
End Try
End Sub