-
Notifications
You must be signed in to change notification settings - Fork 48
Update TestFlight release channel from internal to public beta #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -78,20 +78,23 @@ platform :ios do | |||||
| api_key: api_key, | ||||||
| app_identifier: "v2er.app", | ||||||
| skip_submission: false, | ||||||
| distribute_external: true, | ||||||
| groups: ["External"], # Default external tester group | ||||||
| notify_external_testers: true, | ||||||
| distribute_external: true, # Distribute to external testers (public beta) | ||||||
| groups: ["Public Beta", "External Testers", "Beta Testers"], # Public beta groups | ||||||
| notify_external_testers: true, # Send email notifications | ||||||
| uses_non_exempt_encryption: false, | ||||||
| submit_beta_review: true, | ||||||
| submit_beta_review: true, # Automatically submit for Beta review | ||||||
| wait_for_uploaded_build: true, | ||||||
| beta_app_description: "V2er is an elegant third-party client for V2EX forum", | ||||||
| beta_app_feedback_email: "support@v2er.app", | ||||||
| demo_account_required: false, | ||||||
| beta_app_review_info: { | ||||||
| contact_email: "support@v2er.app", | ||||||
| contact_first_name: "V2er", | ||||||
| contact_last_name: "Support", | ||||||
| contact_phone: "+1234567890", | ||||||
| contact_phone: "+86 1234567890", | ||||||
|
||||||
| contact_phone: "+86 1234567890", | |
| contact_phone: "+86 13800138000", |
Copilot
AI
Sep 24, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This duplicates the same group configuration from lines 82. The groups array contains multiple similar group names that may not all exist in TestFlight. Consider using only the groups that actually exist in your TestFlight configuration to avoid potential distribution failures.
| groups: ["Public Beta", "External Testers", "Beta Testers"], # Public beta groups | |
| groups: ["Public Beta"], # Only include groups that exist in TestFlight |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete if it's optional
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete these fields if they're optional
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The groups array contains multiple similar group names that may not all exist in TestFlight. Consider using only the groups that actually exist in your TestFlight configuration to avoid potential distribution failures. If unsure, start with a single known group name like 'Public Beta'.