Skip to content

Commit 78d71bb

Browse files
authored
Merge branch 'Expensify:main' into Make-or-track-payments---policy-changelog
2 parents af7732a + 94035e1 commit 78d71bb

52 files changed

Lines changed: 484 additions & 561 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/remote-build-android.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,3 @@ jobs:
5959
variant: ${{ matrix.variant }}
6060
rock-build-extra-params: '--extra-params -PreactNativeArchitectures=arm64-v8a,x86_64'
6161
comment-bot: false
62-
63-
- name: Verify ELF alignment
64-
run: |
65-
APK_PATH=$(find android/app/build/outputs/apk -type f -name "*.apk" | head -n 1)
66-
echo "Using APK: $APK_PATH"
67-
68-
scripts/check-elf-alignment.sh "$APK_PATH"

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ android {
114114
minSdkVersion rootProject.ext.minSdkVersion
115115
targetSdkVersion rootProject.ext.targetSdkVersion
116116
multiDexEnabled rootProject.ext.multiDexEnabled
117-
versionCode 1009025904
118-
versionName "9.2.59-4"
117+
versionCode 1009026000
118+
versionName "9.2.60-0"
119119
// Supported language variants must be declared here to avoid from being removed during the compilation.
120120
// This also helps us to not include unnecessary language variants in the APK.
121121
resConfigs "en", "es"

eslint.changed.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const config = defineConfig([
5656
ignores: ['**/libs/**/*.{ts,tsx}'],
5757
rules: {
5858
'no-restricted-imports': [
59-
'error',
59+
'warn',
6060
{
6161
paths: restrictedIconImportPaths,
6262
patterns: restrictedIconImportPatterns,

ios/NewExpensify/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<key>CFBundlePackageType</key>
2424
<string>APPL</string>
2525
<key>CFBundleShortVersionString</key>
26-
<string>9.2.59</string>
26+
<string>9.2.60</string>
2727
<key>CFBundleSignature</key>
2828
<string>????</string>
2929
<key>CFBundleURLTypes</key>
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>9.2.59.4</string>
47+
<string>9.2.60.0</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

ios/NotificationServiceExtension/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<key>CFBundleName</key>
1212
<string>$(PRODUCT_NAME)</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>9.2.59</string>
14+
<string>9.2.60</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.2.59.4</string>
16+
<string>9.2.60.0</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

ios/ShareViewController/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<key>CFBundleName</key>
1212
<string>$(PRODUCT_NAME)</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>9.2.59</string>
14+
<string>9.2.60</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.2.59.4</string>
16+
<string>9.2.60.0</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionAttributes</key>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "9.2.59-4",
3+
"version": "9.2.60-0",
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.",

scripts/check-elf-alignment.sh

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
#!/bin/bash
2-
3-
# Original source https://cs.android.com/android/platform/superproject/main/+/main:system/extras/tools/check_elf_alignment.sh
4-
52
set -o pipefail
63

74
progname="${0##*/}"
@@ -114,18 +111,4 @@ if [ "${#unaligned_libs[@]}" -gt 0 ]; then
114111
elif [ -n "${dir_filename:-}" ]; then
115112
success "ELF Verification Successful"
116113
fi
117-
118-
arm64_unaligned=0
119-
for lib in "${unaligned_libs[@]}"; do
120-
if [[ "$lib" == *"arm64-v8a"* ]]; then
121-
arm64_unaligned=1
122-
break
123-
fi
124-
done
125-
126-
if [ "$arm64_unaligned" -eq 1 ]; then
127-
printf "%s arm64-v8a ELF misalignment detected. %s\n" "$RED" "$RESET"
128-
exit 1
129-
fi
130-
131114
echo "====================="

0 commit comments

Comments
 (0)