Hello, please apologizemy english, i am new in this.
I am using GPS sample, and works great!
Now i want to show an "accept my conditions" screen, at the very begining of my app, with a check box and a button... I made it. My question is, can i start this screen from inside the starter module (the one with gps stuffs)?
I suposed i cant, so i put this at the beginin of my main activity:
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("1")
If File.Exists(File.DirInternal & "/AAA", "")=False Then File.MakeDir(File.DirInternal , "AAA")
If File.Exists(File.DirInternal & "/AAA", "ACECON.TXT")=False Then
StartActivity(frmCondiciones)
If File.Exists(File.DirInternal & "/AAA", "ACECON.TXT")=False Then ExitApplication
End If
The frmCondiciones screen, make the TXT file if you check the checkbox.
The problem is, after check box and press button, IT SENDS ME TO A
GOOGLE SCREEN!! I believe is Google Now screen... showa 1 second and then the app ends.
What is happeninng? Should i start frmCondiciones from starter module?
Thanks!!