Skip to content

Commit 8760431

Browse files
committed
Merge branch 'main' into fix/64065-composer-not-refocused-after-add-emoji
2 parents bb442d3 + 58229fe commit 8760431

848 files changed

Lines changed: 7710 additions & 5257 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.

.eslintrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ const restrictedImportPaths = [
100100
name: 'react-native-animatable',
101101
message: "Please use 'react-native-reanimated' instead.",
102102
},
103+
{
104+
name: 'react-native-onyx',
105+
importNames: ['useOnyx'],
106+
message: "Please use '@hooks/useOnyx' instead.",
107+
},
103108
];
104109

105110
const restrictedImportPatterns = [
@@ -225,6 +230,7 @@ module.exports = {
225230
'rulesdir/no-multiple-onyx-in-file': 'off',
226231
'rulesdir/prefer-underscore-method': 'off',
227232
'rulesdir/prefer-import-module-contents': 'off',
233+
'rulesdir/no-beta-handler': 'error',
228234

229235
// React and React Native specific rules
230236
'react-native-a11y/has-accessibility-hint': ['off'],

.github/workflows/publishReactNativeAndroidArtifacts.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ on:
1818
- package.json
1919
- patches/react-native+*.patch
2020
- patches/@react-native+*.patch
21+
- patches/react-native/react-native+*.patch
22+
- patches/react-native/@react-native+*.patch
2123
- Mobile-Expensify
2224

2325
jobs:

Mobile-Expensify

__mocks__/react-native-onyx.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
/* eslint-disable rulesdir/prefer-onyx-connect-in-libs */
77
import type {ConnectOptions, OnyxKey} from 'react-native-onyx';
8+
// eslint-disable-next-line no-restricted-imports
89
import Onyx, {useOnyx, withOnyx} from 'react-native-onyx';
910

1011
let connectCallbackDelay = 0;

android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.grad
1313
/* Fullstory settings */
1414
fullstory {
1515
org 'o-1WN56P-na1'
16-
enabledVariants 'production'
16+
enabledVariants 'all'
1717
logcatLevel 'debug'
1818
recordOnStart false
1919
}
@@ -114,8 +114,8 @@ android {
114114
minSdkVersion rootProject.ext.minSdkVersion
115115
targetSdkVersion rootProject.ext.targetSdkVersion
116116
multiDexEnabled rootProject.ext.multiDexEnabled
117-
versionCode 1009017409
118-
versionName "9.1.74-9"
117+
versionCode 1009017800
118+
versionName "9.1.78-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/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ buildscript {
3232
classpath("com.google.firebase:firebase-crashlytics-gradle:2.7.1")
3333
classpath("com.google.firebase:perf-plugin:1.4.1")
3434
// Fullstory integration
35-
classpath ("com.fullstory:gradle-plugin-local:1.52.0")
35+
classpath ("com.fullstory:gradle-plugin-local:1.61.0")
3636

3737
// NOTE: Do not place your application dependencies here; they belong
3838
// in the individual module build.gradle files

assets/images/integrationicons/export/microsoft-dynamics-icon.svg

Lines changed: 0 additions & 25 deletions
This file was deleted.

assets/images/integrationicons/export/netsuite-icon.svg

Lines changed: 0 additions & 25 deletions
This file was deleted.

assets/images/integrationicons/export/netsuite-oracle-icon.svg

Lines changed: 0 additions & 30 deletions
This file was deleted.

assets/images/integrationicons/export/oracle-icon.svg

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)