-
Notifications
You must be signed in to change notification settings - Fork 3
Home
ayoung edited this page Aug 26, 2011
·
5 revisions
These are the MonoTouch bindings for TestFlight's SDK v0.5. As of this writing the TestFlight SDK is still in beta and you'll need to get approved from them in order to get access to the beta program.
- Download the TestFlight SDK from their site.
- Clone this repository
- Run "make"
- Copy libTestFlight.a (downloaded step 1) and monotouch-testflight.dll (generated from "make") to the root of your proj. You can copy them to another relative location but you'll have to modify the gcc_flags specified down below to match the paths.
- In your MonoTouch project options > iPhone Build
-
Set Linker behavior to "Link SDK assemblies only"
-
Set the Extra arguments in all iPhone Build configurations that you want to use the SDK in to:
-v -v -v -nosymbolstrip -gcc_flags "-L${ProjectDir}/../References/libtestflight -ltestflight -ObjC"
-