Skip to content

Commit f2e295f

Browse files
authored
Merge pull request #51877 from Expensify/AndrewGable-cherry-pick-staging-51873-1
2 parents 3365da8 + 339ddd7 commit f2e295f

File tree

8 files changed

+21
-18
lines changed

8 files changed

+21
-18
lines changed

android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ android {
110110
minSdkVersion rootProject.ext.minSdkVersion
111111
targetSdkVersion rootProject.ext.targetSdkVersion
112112
multiDexEnabled rootProject.ext.multiDexEnabled
113-
versionCode 1009005604
114-
versionName "9.0.56-4"
113+
versionCode 1009005605
114+
versionName "9.0.56-5"
115115
// Supported language variants must be declared here to avoid from being removed during the compilation.
116116
// This also helps us to not include unnecessary language variants in the APK.
117117
resConfigs "en", "es"

fastlane/Appfile

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
app_identifier("com.chat.expensify.chat") # The bundle identifier of your app
2-
apple_id("ios@expensify.com") # Your Apple email address
3-
4-
itc_team_id("152696") # App Store Connect Team ID
5-
team_id("368M544MTT") # Developer Portal Team ID
6-
7-
for_lane :build_hybrid, :build_unsigned_hybrid, :upload_testflight_hybrid do
8-
app_identifier("com.expensify.expensifylite")
9-
end
1+
# See https://docs.fastlane.tools/advanced/Appfile/
2+
apple_id("ios@expensify.com")
3+
itc_team_id("152696")
4+
team_id("368M544MTT")

fastlane/Fastfile

+9-1
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ platform :ios do
274274
)
275275

276276
build_app(
277+
app_identifier: "com.chat.expensify.chat",
277278
workspace: "./ios/NewExpensify.xcworkspace",
278279
scheme: "New Expensify",
279280
output_name: "New Expensify.ipa",
@@ -304,6 +305,7 @@ platform :ios do
304305
)
305306

306307
build_app(
308+
app_identifier: "com.expensify.expensifylite",
307309
workspace: "../iOS/Expensify.xcworkspace",
308310
scheme: "Expensify",
309311
output_name: "Expensify.ipa",
@@ -324,6 +326,7 @@ platform :ios do
324326
lane :build_unsigned do
325327
ENV["ENVFILE"]=".env.production"
326328
build_app(
329+
app_identifier: "com.chat.expensify.chat",
327330
workspace: "./ios/NewExpensify.xcworkspace",
328331
scheme: "New Expensify"
329332
)
@@ -334,6 +337,7 @@ platform :ios do
334337
lane :build_unsigned_hybrid do
335338
ENV["ENVFILE"]="../Mobile-Expensify/.env.production.hybridapp"
336339
build_app(
340+
app_identifier: "com.expensify.expensifylite",
337341
workspace: "../Mobile-Expensify/iOS/Expensify.xcworkspace",
338342
scheme: "Expensify"
339343
)
@@ -355,6 +359,7 @@ platform :ios do
355359
)
356360

357361
build_app(
362+
app_identifier: "com.chat.expensify.chat",
358363
workspace: "./ios/NewExpensify.xcworkspace",
359364
skip_profile_detection: true,
360365
scheme: "New Expensify AdHoc",
@@ -388,6 +393,7 @@ platform :ios do
388393
desc "Upload app to TestFlight"
389394
lane :upload_testflight do
390395
upload_to_testflight(
396+
app_identifier: "com.chat.expensify.chat",
391397
api_key_path: "./ios/ios-fastlane-json-key.json",
392398
distribute_external: true,
393399
notify_external_testers: true,
@@ -421,6 +427,7 @@ platform :ios do
421427
desc "Upload HybridApp to TestFlight"
422428
lane :upload_testflight_hybrid do
423429
upload_to_testflight(
430+
app_identifier: "com.expensify.expensifylite",
424431
api_key_path: "./ios/ios-fastlane-json-key.json",
425432
distribute_external: true,
426433
notify_external_testers: true,
@@ -452,9 +459,10 @@ platform :ios do
452459
)
453460
end
454461

455-
desc "Submit app to App Store Review"
462+
desc "Submit app for production App Store Review"
456463
lane :submit_for_review do
457464
deliver(
465+
app_identifier: "com.chat.expensify.chat",
458466
api_key_path: "./ios/ios-fastlane-json-key.json",
459467

460468
# Skip HTMl report verification

ios/NewExpensify/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</dict>
4141
</array>
4242
<key>CFBundleVersion</key>
43-
<string>9.0.56.4</string>
43+
<string>9.0.56.5</string>
4444
<key>FullStory</key>
4545
<dict>
4646
<key>OrgId</key>

ios/NewExpensifyTests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>9.0.56.4</string>
22+
<string>9.0.56.5</string>
2323
</dict>
2424
</plist>

ios/NotificationServiceExtension/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.0.56</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.0.56.4</string>
16+
<string>9.0.56.5</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "9.0.56-4",
3+
"version": "9.0.56-5",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

0 commit comments

Comments
 (0)