Skip to content

Commit 640a93f

Browse files
committed
Merge branch 'main' of https://github.com/Expensify/App into mkzie2-issue/68656
2 parents 7a0f9ed + 6517be6 commit 640a93f

936 files changed

Lines changed: 51519 additions & 6540 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
@@ -17,3 +17,4 @@ help/_scripts/**
1717
modules/ExpensifyNitroUtils/nitrogen/**
1818
Mobile-Expensify/**
1919
vendor
20+
modules/group-ib-fp/**

.github/CODEOWNERS

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Every PR gets a review from an internal Expensify engineer
22
* @Expensify/pullerbear
33

4-
# Assign the Design team to review changes to our styles & assets
5-
src/styles/ @Expensify/design @Expensify/pullerbear
6-
assets/ @Expensify/design @Expensify/pullerbear
4+
# PRs that touch the front end source code, get an additional review from the product-pr team
5+
src/ @Expensify/product-pr @Expensify/pullerbear
6+
7+
# PRs that touch the front end style or assets, get an additional review from the Design team
8+
src/styles/ @Expensify/design @Expensify/product-pr @Expensify/pullerbear
9+
assets/ @Expensify/design @Expensify/product-pr @Expensify/pullerbear

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Remote Build Android
33
on:
44
workflow_dispatch:
55
push:
6-
branches-ignore: [staging, production]
6+
branches-ignore: [staging, production, cherry-pick-*]
77
paths-ignore: ['docs/**', 'contributingGuides/**', 'help/**', '.github/**', 'scripts/**', 'tests/**']
88

99
concurrency:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Remote Build iOS
33
on:
44
workflow_dispatch:
55
push:
6-
branches-ignore: [staging, production]
6+
branches-ignore: [staging, production, cherry-pick-*]
77
paths-ignore: ['docs/**', 'contributingGuides/**', 'help/**', '.github/**', 'scripts/**', 'tests/**']
88

99
concurrency:

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ package-lock.json
1717
*.scss
1818
*.md
1919
*.markdown
20+
# We need to ignore index.js because it should always have plyfill on top of imports and we don't want prettier to sort them
21+
index.js
2022
# We need to modify the import here specifically, hence we disable prettier to get rid of the sorted imports
2123
src/libs/E2E/reactNativeLaunchingTest.ts
2224

@@ -26,3 +28,4 @@ src/libs/SearchParser/autocompleteParser.js
2628

2729
# Disable prettier in the submodule
2830
Mobile-Expensify
31+
modules/group-ib-fp

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 1009019905
118-
versionName "9.1.99-5"
117+
versionCode 1009020100
118+
versionName "9.2.1-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/settings.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ project(':react-native-plaid-link-sdk').projectDir = new File(rootProject.projec
1515
include ':app'
1616
includeBuild('../node_modules/@react-native/gradle-plugin')
1717

18+
include ':gibsdk'
19+
project(':gibsdk').projectDir = new File(rootProject.projectDir, '../node_modules/group-ib-fp/android/gibsdk')
20+
include ':package'
21+
project(':package').projectDir = new File(rootProject.projectDir, '../node_modules/group-ib-fp/android/package')
22+
1823
if(settings.extensions.patchedArtifacts.buildFromSource) {
1924
includeBuild('../node_modules/react-native') {
2025
dependencySubstitution {
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

0 commit comments

Comments
 (0)