On Thu, Apr 26, 2012 at 15:25, Dan Miser <[email protected]> wrote: > Thank you for that. How do you deal with external users getting > access? In the apple docs they say you need to deploy using adhoc. I > have the Pro version of MonoTouch so I don't know if that will work.
yes, it does. You make an adhoc build based on your user's UDID's. TF handles them signing up and collecting the UDID, you just add in the UDIDs, make a cert, then make a new build target in MD and it makes an IPA for you, which you upload (via MD or the website) to testflight, and people can get it from there And you absolutely can do it with pro. > I sent an invite to one of my users. He got set up fine and I see him > in the TestFlight dashboard. I can upload a build to TestFlight via > the Project | Publish to TestFlight menu (aweseome feature, BTW!!!), > but I can't get that user to have permissions for that build. I think > I need to add them to my development profile. I know this is an > Apple/iOS thing, but I'm having troubles getting this done. Does > someone have a link to show me what I'm missing. Thanks in advance. You need to go into the provisioning portal, make a new Provisioning (distribution) profile The type is adhoc, and you can pick which devices have access (you have to add them into the devices section). Then you get the certificates down, install them into xcode, and select them in your build settings in MD. And yes, it IS a royal pain in the arse. I've had devices which are on the list, but refuse to install, then will, then will not.... it's a mess. > > > > On Apr 26, 2012, at 3:26 AM, Nic Wise <[email protected]> wrote: > >> 1. Call takeoff >> 2. Call SetDeviceIdentifier IF YOU ARE NOT IN THE APPSTORE (Apple will >> reject it if it is, but it's fine - and useful - if you are just >> testing) >> 3. Call Checkpoint now and again >> 4. ??? >> 5. Profit! >> >> (couldn't resist) >> >> Thats it, really. You can use the Feedback method, too, to get the >> user to enter feedback, which shows up in TF. The checkpoints and user >> sessions show up both in TF and in TFLive, which is more use for when >> your app is in the appstore. >> >> Under builds (in TF) you can see who has what >> Under sessions, you can see who's used your app. >> etc. >> >> Most of it - crash dumps etc - is all automatic, as they put in hooks >> (also: dont call TakeOff when you are debugging, they override all the >> Mono debug hooks, and debugging doesn't work!) >> >> >> >> >> On Thu, Apr 26, 2012 at 08:06, jowi <[email protected]> wrote: >>> I've succesfully integrated the TestFlight API v1.0 in my code, and i can >>> upload my builds to TestFlight. But what i can't find is how to actually use >>> it proprerly in my Monotouch code and projects? >>> >>> I found some samples to see that i have to do a TakeOf() in my appdelegate, >>> and that i can set checkpoints, but then what? Is that it? Where do they >>> show up? The SDK also talks about crash reports, remote logging, user >>> feedbakc etc. How do we do this in MonoTouch? >>> >>> A nice walkthrough or howto on the site would be highly appreciated!!! >>> >>> >>> >>> -- >>> View this message in context: >>> http://monotouch.2284126.n4.nabble.com/TestFlight-code-howto-tp4589049p4589049.html >>> Sent from the MonoTouch mailing list archive at Nabble.com. >>> _______________________________________________ >>> MonoTouch mailing list >>> [email protected] >>> http://lists.ximian.com/mailman/listinfo/monotouch >> >> >> >> -- >> Nic Wise >> t. +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise >> b. http://www.fastchicken.co.nz/ >> >> Earnest: Self-employed? Track your business expenses and income. >> http://earnestapp.com >> Nearest Bus: find when the next bus is coming to your stop. >> http://goo.gl/Vcz1p >> mobileAgent (for FreeAgent): get your accounts in your pocket. >> http://goo.gl/IuBU >> Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa >> London Bike App: Find the nearest Boris Bike, and get riding! >> http://goo.gl/Icp2 >> _______________________________________________ >> MonoTouch mailing list >> [email protected] >> http://lists.ximian.com/mailman/listinfo/monotouch -- Nic Wise t. +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise b. http://www.fastchicken.co.nz/ Earnest: Self-employed? Track your business expenses and income. http://earnestapp.com Nearest Bus: find when the next bus is coming to your stop. http://goo.gl/Vcz1p mobileAgent (for FreeAgent): get your accounts in your pocket. http://goo.gl/IuBU Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa London Bike App: Find the nearest Boris Bike, and get riding! http://goo.gl/Icp2 _______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
