-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf934cc
commit f4f7101
Showing
3 changed files
with
64 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,6 @@ apple_id("[email protected]") # Your Apple email address | |
itc_team_id("152696") # App Store Connect Team ID | ||
team_id("368M544MTT") # Developer Portal Team ID | ||
|
||
for_lane :build_hybrid, :build_unsigned_hybrid do | ||
for_lane :build_hybrid, :build_unsigned_hybrid, :upload_testflight_hybrid do | ||
app_identifier("com.expensify.expensifylite") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -390,6 +390,30 @@ platform :ios do | |
} | ||
) | ||
|
||
desc "Upload HybridApp to TestFlight" | ||
lane :upload_testflight do | ||
upload_to_testflight( | ||
api_key_path: "./ios/ios-fastlane-json-key.json", | ||
distribute_external: true, | ||
notify_external_testers: true, | ||
changelog: "Thank you for beta testing New Expensify, this version includes bug fixes and improvements.", | ||
groups: ["Beta"], | ||
demo_account_required: true, | ||
beta_app_review_info: { | ||
contact_email: ENV["APPLE_CONTACT_EMAIL"], | ||
contact_first_name: "Andrew", | ||
contact_last_name: "Gable", | ||
contact_phone: ENV["APPLE_CONTACT_PHONE"], | ||
demo_account_name: ENV["APPLE_DEMO_EMAIL"], | ||
demo_account_password: ENV["APPLE_DEMO_PASSWORD"], | ||
notes: "1. In the Expensify app, enter the email '[email protected]'. This will trigger a sign-in link to be sent to '[email protected]' | ||
2. Navigate to https://account.proton.me/login, log into Proton Mail using '[email protected]' as email and the password associated with '[email protected]', provided above | ||
3. Once logged into Proton Mail, navigate to your inbox and locate the email triggered in step 1. The email subject should be 'Your magic sign-in link for Expensify' | ||
4. Open the email and copy the 6-digit sign-in code provided within | ||
5. Return to the Expensify app and enter the copied 6-digit code in the designated login field" | ||
} | ||
) | ||
|
||
puts "dsym path: #{ENV[KEY_DSYM_PATH]}" | ||
upload_symbols_to_crashlytics( | ||
app_id: "1:921154746561:ios:216bd10ccc947659027c40", | ||
|