Hi to all!
I'm able to open gmail using intent object.
I wish to open mail's phone native app.
I have to change only the "com.google.android..." string of the intent?
I'm able to open gmail using intent object.
I wish to open mail's phone native app.
I have to change only the "com.google.android..." string of the intent?
B4X:
Sub OpenGmail
Try
Dim pm As PackageManager
Dim i As Intent
i = pm.GetApplicationIntent("com.google.android.gm")
StartActivity(i)
ToastMessageShow("GMail", True)
Catch
ToastMessageShow("Gmail inactive or not installed...", True)
End Try
End Sub