Hi,
I created an App that has # StartBoot = True in Service Module. How to tell if it has been initialized
By boot or user clicking the app icon? It's possible to know?
Service Module
#Region Service Attributes
#StartAtBoot: True
#End Region
Sub Process_Globals
End Sub
Sub Service_Create
End Sub
Sub Service_Start (StartingIntent As Intent)
Select Case StartingIntent.Action
Case "android.intent.action.BOOT_COMPLETED"
Commands...
Case <Initialized by User>????
Commands....
Case Else
Commands....
End Select
End Sub
I created an App that has # StartBoot = True in Service Module. How to tell if it has been initialized
By boot or user clicking the app icon? It's possible to know?
Service Module
#Region Service Attributes
#StartAtBoot: True
#End Region
Sub Process_Globals
End Sub
Sub Service_Create
End Sub
Sub Service_Start (StartingIntent As Intent)
Select Case StartingIntent.Action
Case "android.intent.action.BOOT_COMPLETED"
Commands...
Case <Initialized by User>????
Commands....
Case Else
Commands....
End Select
End Sub