Skip to content

Commit a375ecd

Browse files
committed
Merge branch 'main' into Migrate-rnef-to-rock
2 parents e0529bb + 53719b6 commit a375ecd

473 files changed

Lines changed: 9971 additions & 4790 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.

.prettierignore

Lines changed: 2 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

.storybook/preview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import React from 'react';
33
import Onyx from 'react-native-onyx';
44
import {SafeAreaProvider} from 'react-native-safe-area-context';
55
import type {Parameters} from 'storybook/internal/types';
6+
import {EnvironmentProvider} from '@components/EnvironmentContext';
67
import OnyxListItemProvider from '@components/OnyxListItemProvider';
78
import {SearchContextProvider} from '@components/Search/SearchContext';
89
import ComposeProviders from '@src/components/ComposeProviders';
910
import HTMLEngineProvider from '@src/components/HTMLEngineProvider';
1011
import {LocaleContextProvider} from '@src/components/LocaleContextProvider';
11-
import {EnvironmentProvider} from '@src/components/withEnvironment';
1212
import {KeyboardStateProvider} from '@src/components/withKeyboardState';
1313
import CONST from '@src/CONST';
1414
import IntlStore from '@src/languages/IntlStore';

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 1009020001
118-
versionName "9.2.0-1"
117+
versionCode 1009020119
118+
versionName "9.2.1-19"
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/src/main/AndroidManifest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/r"/>
6464
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/a"/>
6565
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/settings"/>
66+
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/workspaces"/>
6667
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/details"/>
6768
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/v"/>
6869
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/bank-account"/>
@@ -86,6 +87,7 @@
8687
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/r"/>
8788
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/a"/>
8889
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/settings"/>
90+
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/workspaces"/>
8991
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/details"/>
9092
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/v"/>
9193
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/bank-account"/>
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

0 commit comments

Comments
 (0)