February 2018
Intermediate to advanced
346 pages
9h 56m
English
Going back to our Fastfile, we will add the following to our lane :beta to upload a new binary to TestFlight, for testing:
...
testflight(
username: "your4;email.com",
app_identifier: "com.doronkatz.firefox",
itc_provider: "abcde12345" # pass a specific value to the iTMSTransporter -itc_provider option
)
You can also use Pilot in lieu of TestFlight in the preceding code.
Next, we will amend the preceding code and add a bit more information to our TestFlight action:
testflight(
username: "your@email.com",
app_identifier: "com.doronkatz.firefox",
beta_app_description: "This is a new build and should be dynamic, from prompt",
beta_app_feedback_email: "feedback@firefoxapp.com",
itc_provider: "abcde12345" # pass a specific ...Read now
Unlock full access