Reputation: 2256
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
Reputation: 22245
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.
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