59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# File 'fastlane/lib/fastlane/actions/upload_to_testflight.rb', line 59
def self.example_code
[
'upload_to_testflight',
'testflight # alias for "upload_to_testflight"',
'pilot # alias for "upload_to_testflight"',
'upload_to_testflight(skip_submission: true) # to only upload the build',
'upload_to_testflight(
username: "[email protected]",
app_identifier: "com.krausefx.app",
itc_provider: "abcde12345" # pass a specific value to the iTMSTransporter -itc_provider option
)',
'upload_to_testflight(
beta_app_feedback_email: "[email protected]",
beta_app_description: "This is a description of my app",
demo_account_required: true,
notify_external_testers: false,
changelog: "This is my changelog of things that have changed in a log"
)',
'upload_to_testflight(
beta_app_review_info: {
contact_email: "[email protected]",
contact_first_name: "Connect",
contact_last_name: "API",
contact_phone: "5558675309",
demo_account_name: "[email protected]",
demo_account_password: "connectapi",
notes: "this is review note for the reviewer <3 thank you for reviewing"
},
localized_app_info: {
"default": {
feedback_email: "[email protected]",
marketing_url: "https://example.com/marketing-default",
privacy_policy_url: "https://example.com/privacy-default",
description: "Default description",
},
"en-GB": {
feedback_email: "[email protected]",
marketing_url: "https://example.com/marketing-en-gb",
privacy_policy_url: "https://example.com/privacy-en-gb",
description: "en-gb description",
}
},
localized_build_info: {
"default": {
whats_new: "Default changelog",
},
"en-GB": {
whats_new: "en-gb changelog",
}
}
)'
]
end
|