Hello,
I've tried all the possibilities, but i don't know how I can launch an hidden application.
I've putted
But if the application is hidden, the code doesn't work :BangHead:
I've tried all the possibilities, but i don't know how I can launch an hidden application.
I've putted
B4X:
Try
Dim Intent1 As Intent
Dim pm As PackageManager
Intent1.Initialize (Intent1.ACTION_MAIN, "")
Intent1 = pm.GetApplicationIntent ("com.jofa.fortablets")
StartActivity (Intent1)
Catch
ToastMessageShow ("Failed to launch app! Is it installed?", True)
End Try