Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MonoTouch & TestFlight

I've been searching around and can't seem to find a definitive reference on how to use the TestFlight SDK with MonoTouch... has anyone gotten it to work successfully with 0.8.3 and mind sharing their secret?

like image 878
Ryan Moore Avatar asked Jan 18 '23 10:01

Ryan Moore


1 Answers

Testflight documentation can be found here: http://docs.xamarin.com/ios/tutorials/TestFlight_Support#

The Testflight bindings can be found here: https://github.com/mono/monotouch-bindings/tree/master/TestFlight

Instructions about building are also on Github following the link above. Basically you just have to run "make" from the TestFlight folder (but copy the appropriate TestFlightSDK_xxx.zip file into that folder first).

The Make file included in the github repo utilizes the TestFlight SDK (a zip file) which must be independently downloaded from TestFlightApp.com and manually copied (in compressed form) into the folder containing the binding project from github.

Then use Testflight SDK as explained on the Testflight website (call TakeOff(), set checkpoints, etc.).

like image 167
Krumelur Avatar answered Jan 29 '23 12:01

Krumelur