Sub in activity module:
Service ("Srvice") module:
This code above doesn't work. Where I've mistaken?
B4X:
Sub Load()
StartService(Srvice)
Srvice.prd.Add("LOL")
Msgbox(Srvice.prd.Get(0), "")
End Sub
B4X:
Sub Process_Globals
Dim prd As List
End Sub
Sub Service_Create
prd.Initialize
End Sub
Sub Service_Start (StartingIntent As Intent)
End Sub
This code above doesn't work. Where I've mistaken?