Search code examples
iphoneobjective-ciosxcodetestflight

Ios app and TestFlight integration


I could not integrate the Test Flight sdk in my ios App for crash report.can some body help me to integrate the TestFlight sdk in my App in very simple steps.however i followed the TestFlight sdk documentation but could not integrate.


Solution

  • The Simple Steps are:

    1] Copy The libTestFlight.a and It's header file in a folder and add that folder to your project

    enter image description here

    2] Make Sure your libTestFlight.a appears in linked binaries

    enter image description here

    3] Your Library Search path will have an entry such as

    enter image description here

    Finally Make a call to --

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        [TestFlight takeOff:TESTFLIGHT_TEAM_TOKEN];
         //---- Other Stuff goes here 
    }
    

    Hope it helps !! You can find more resources on slideshare.

    EDIT: How to reach to linked Binaries Step - (Currently using XCode 4.3.3)

    ScreenGrab - enter image description here