Android Example Global variables in Starter service not initializing

In my new app, I am using the Starter service. I have a few variables I am trying to create, and consume them in my "main" form.
But when I start my app, I get an error message of an undeclared variable, bbut it is declared in the starter file (as seen below)
Here is the area in question in the starter.
"
#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.
Public strTechid As String
Public strCompany As String
Public strxml As InputStream

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.
strTechid =""
strCompany =""

End Sub
"
 
Top