Hello,
from my program I need to run another application,
so I have found this code:
Ok, but program name that I need to lunch is "ilMeteo", but how can I found "com.package.tolaunch" of this program ???
Thanks
Sergio
from my program I need to run another application,
so I have found this code:
B4X:
Sub YourButton_Click
Try
Dim Intent1 As Intent
Dim pm as PackageManager
Intent1 = pm.GetApplicationIntent ("com.package.tolaunch")
StartActivity (Intent1)
Catch
ToastMessageShow ("Failed to launch app! Is it installed?", True)
End Try
End Sub
Ok, but program name that I need to lunch is "ilMeteo", but how can I found "com.package.tolaunch" of this program ???
Thanks
Sergio