Essentially, this opens up the TestFlight app directly to your app’s page to get feedback from your beta testers. It has increased feedback on our beta drastically, so consider adding it your app!
-- the button opens the TestFlight app on the beta tester's phone (iOS9 provides easy access back to app) -- this method has increased beta feedback for us ten fold, so I thought it'd be helpful to share local appId = "" -- found on your app's info page in iTunes Connect local openTestFlightFunction = function ( event ) if event.phase == "ended" then system.openURL( "https://beta.itunes.apple.com/v1/app/" .. appId ) -- this opens the TestFlight app to your app specifically end end local openTestFlight = display.newText("Beta Feedback",display.contentWidth\*.5,display.contentHeight\*.5,native.systemFontBold,28) openTestFlight:addEventListener("tap",openTestFlightFunction)