#Region Service Attributes
#StartAtBoot: False
#ExcludeFromLibrary: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Private NativeMe As JavaObject
End Sub
Sub Service_Create
'This is the program entry point.
'This is a good place to load resources that are not specific to a single activity.
NativeMe.InitializeContext
End Sub
Sub Service_Start (StartingIntent As Intent)
NativeMe.RunMethod("reset",Null)
End Sub
Sub Service_Destroy
End Sub
sub test()
log("test")
end sub
#if JAVA
public void reset(){
anywheresoftware.b4a.keywords.Common.CallSubNew(mostCurrent.activityBA,service1.getObject(),"test");
}
#end if