kirander
kirander

Reputation: 2256

TestFlight: How to add test details to build before upload to App Store?

I want to add "What to test" text in Test Details section before the build is processed and get Testing status. Is it possible?

Upvotes: 6

Views: 1088

Answers (1)

Cameron Lowell Palmer
Cameron Lowell Palmer

Reputation: 22245

Using Fastlane

It sounds like you want to start doing more sophisticated things with regards automated / CI uploads to TestFlight. I recommend trying out Fastlane which has implemented exactly what you want.

localized_build_info

In addition to the other values you submit as part of upload_to_testflight you need the localized_build_info

upload_to_testflight(localized_build_info: {
                       "default": {
                         whats_new: "Your test details go here",
                       },
                       "en-US": {
                         whats_new: "Your localized test details go here",
                       }
                     })

Upvotes: 4

Related Questions