Hi,
I have made a wrapper to include TestFlight in your App. More information you can read on:
https://testflightapp.com
Here you can also download the app key (for every app a different key)
you can download the package (because it is to big to upload it here)
https://www.dropbox.com/s/ks7wkxm3coc7jsq/iTestFlightLib.zip?dl=0
It is pretty simple
Enjoy!
I have made a wrapper to include TestFlight in your App. More information you can read on:
https://testflightapp.com
Here you can also download the app key (for every app a different key)
you can download the package (because it is to big to upload it here)
https://www.dropbox.com/s/ks7wkxm3coc7jsq/iTestFlightLib.zip?dl=0
It is pretty simple
B4X:
Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public App As Application
Public NavControl As NavigationController
Private Page1 As Page
Private tf As TestFlightManager
End Sub
Private Sub Application_Start (Nav As NavigationController)
tf.Initialize("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")
NavControl = Nav
NavControl.ToolBarVisible = False
Page1.Initialize("Page1")
Page1.Title = "Test Page"
NavControl.ShowPage(Page1)
Log(tf.sdkVersion)
tf.PassCheckpoint("PassTest")
tf.SubmitFeedback("Feedback")
tf.AddCustomEnvironmentInformation("info","key")
End Sub
Enjoy!
Last edited: