B4i Library iTestFlight

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

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:

Shay

Well-Known Member
Licensed User
Longtime User
I am getting compliation errors while trying to use this library
this is while I just enable the library:

Building Xcode project 0.12
Sending data to remote compiler. Error
Out: Build settings from command line:

=== BUILD TARGET B4iProject OF PROJECT B4iProject WITH CONFIGURATION Release ===

Check dependencies

#import "iTestFlight.h"
^
1 error generated.


Error: ** BUILD FAILED **


The following build commands failed:
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_customlistview.o B4iProject/b4i_customlistview.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_customlistviewcache.o B4iProject/b4i_customlistviewcache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_globalcode.o B4iProject/b4i_globalcode.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_googlemaps2.o B4iProject/b4i_googlemaps2.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_httpjob.o B4iProject/b4i_httpjob.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_httputils2service.o B4iProject/b4i_httputils2service.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_jobmanager.o B4iProject/b4i_jobmanager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_locationservice.o B4iProject/b4i_locationservice.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(8 failures)
 
Last edited:

Shay

Well-Known Member
Licensed User
Longtime User
Yes I see it, I assume this also has some SDK, can you integrate it?
 

aaronk

Well-Known Member
Licensed User
Longtime User
It seems that TestFlight is shutting down..

TestFlightapp.com will shutdown on 2/26/2015

What will happen to TestFlightApp.com after February 26, 2015?
The services offered at TestFlightApp.com will no longer be available after February 26, 2015. To prepare for the TestFlightapp.com closure, developers and team leaders are recommended to transfer their testers to the all-new TestFlight Beta Testing in iTunes Connect.

Will this Library work with the TestFlight in iTunes Connect ?
 
Top