I want to make it poosible for me to remotly start my app after it has been stopped by OS.
I have not made any Notifications or other stuff in the FBM service:
Below is the code for starting App
B4X:
If MessageType = "RemoteStart" Then
Log("Starting app from Push")
StartActivity(Main)
Dim myIntent As Intent
Intent.Initialize(myIntent.ACTION_MAIN,"")
Intent.SetComponent("com.XXX.yyy/.main")
StartActivity(Intent)
End if