Skip to content

Commit be8b4a9

Browse files
committed
resolve conflicts
2 parents 42c3fb1 + 1cd33a2 commit be8b4a9

235 files changed

Lines changed: 8328 additions & 1988 deletions

File tree

Some content is hidden

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

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ web/gtm.js
1414
src/libs/SearchParser/searchParser.js
1515
src/libs/SearchParser/autocompleteParser.js
1616
help/_scripts/**
17+
modules/ExpensifyNitroUtils/nitrogen/**
1718
Mobile-Expensify/**
1819
vendor

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ jobs:
273273
attachments: [{
274274
color: "#DB4545",
275275
pretext: `<!subteam^S4TJJ3PSL>`,
276-
text: `💥 Android HybridApp production <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}|deploy run> failed. Please <https://stackoverflowteams.com/c/expensify/questions/5738|manually submit> ${{ needs.prep.outputs.APP_VERSION }} in the <https://play.google.com/console/u/0/developers/8765590895836334604/app/4974129597497161901/releases/overview|Google Play Store>. 💥 But first check the workflow, it's likely that the release was successful and <https://github.com/Expensify/Expensify/issues/488492|this error> is occuring)`,
276+
text: `💥 Android HybridApp production <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}|deploy run> failed. Please <https://stackoverflowteams.com/c/expensify/questions/5738|manually submit> ${{ needs.prep.outputs.APP_VERSION }} in the <https://play.google.com/console/u/0/developers/8765590895836334604/app/4974129597497161901/releases/overview|Google Play Store> 💥`,
277277
}]
278278
}
279279
env:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,3 +150,6 @@ react-compiler-output.txt
150150

151151
# React Native Enterprise Framework
152152
.rnef/
153+
154+
# Generated by bob (for Nitro modules)
155+
modules/*/lib/

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 1009016300
118-
versionName "9.1.63-0"
117+
versionCode 1009016400
118+
versionName "9.1.64-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"

android/app/proguard-rules.pro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# Add any project specific keep options here:
1111
-keep class com.expensify.chat.BuildConfig { *; }
1212
-keep class com.facebook.** { *; }
13+
-keep class com.margelo.nitro.** { *; }
1314
-keep, allowoptimization, allowobfuscation class expo.modules.** { *; }
1415

1516
# Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<uses-permission android:name="android.permission.INTERNET" />
66
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
77
<uses-permission android:name="android.permission.CAMERA" />
8+
<uses-permission android:name="android.permission.READ_CONTACTS" />
89
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
910
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
1011
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

assets/images/educational-illustration__multi-scan.svg

Lines changed: 380 additions & 0 deletions
Loading

contributingGuides/NAVIGATION.md

Lines changed: 1024 additions & 114 deletions
Large diffs are not rendered by default.

cspell.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@
316316
"mapboxgl",
317317
"marcaaron",
318318
"Marcin",
319+
"margelo",
319320
"Marqeta",
320321
"mateusz",
321322
"McAfee",
@@ -689,6 +690,9 @@
689690
"ios/GoogleService-Info-DEV.plist",
690691
"ios/AirshipConfig.plist",
691692
"Mobile-Expensify",
693+
"modules/ExpensifyNitroUtils/nitrogen/**",
694+
"modules/ExpensifyNitroUtils/android/build.gradle",
695+
"modules/ExpensifyNitroUtils/android/src/main/cpp/**",
692696
"src/TIMEZONES.ts",
693697
"tests/unit/EmojiTest.ts",
694698
"tests/unit/FastSearchTest.ts",

0 commit comments

Comments
 (0)