Skip to content

Commit 8f4ca4a

Browse files
committed
Merge branch 'main' into @zfurtak/selectionlist-refactor
2 parents ee07145 + 431dddf commit 8f4ca4a

File tree

209 files changed

+3051
-1941
lines changed

Some content is hidden

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

209 files changed

+3051
-1941
lines changed

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Remote Build Android
22

33
on:
44
workflow_dispatch:
5+
inputs:
6+
mobile_expensify_pr:
7+
description: 'Mobile-Expensify PR number to use for hybrid build'
8+
required: false
9+
type: string
510
push:
611
branches-ignore: [staging, production, cherry-pick-*]
712
paths-ignore: ['docs/**', 'contributingGuides/**', 'help/**', '.github/**', 'scripts/**', 'tests/**']
@@ -35,6 +40,14 @@ jobs:
3540
with:
3641
IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }}
3742

43+
- name: Checkout specific Mobile-Expensify PR
44+
if: ${{ matrix.is_hybrid_build && github.event.inputs.mobile_expensify_pr }}
45+
run: |
46+
cd Mobile-Expensify
47+
git fetch origin pull/${{ github.event.inputs.mobile_expensify_pr }}/head:pr-${{ github.event.inputs.mobile_expensify_pr }}
48+
git checkout pr-${{ github.event.inputs.mobile_expensify_pr }}
49+
echo "Checked out Mobile-Expensify PR #${{ github.event.inputs.mobile_expensify_pr }}"
50+
3851
- name: RNEF Remote Build - Android
3952
# rnef v2
4053
uses: callstackincubator/android@d9a81f860e436ff2971323990244e32830dcabd1

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Remote Build iOS
22

33
on:
44
workflow_dispatch:
5+
inputs:
6+
mobile_expensify_pr:
7+
description: 'Mobile-Expensify PR number to use for hybrid build'
8+
required: false
9+
type: string
510
push:
611
branches-ignore: [staging, production, cherry-pick-*]
712
paths-ignore: ['docs/**', 'contributingGuides/**', 'help/**', '.github/**', 'scripts/**', 'tests/**']
@@ -39,6 +44,14 @@ jobs:
3944
with:
4045
IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }}
4146

47+
- name: Checkout specific Mobile-Expensify PR
48+
if: ${{ matrix.is_hybrid_build && github.event.inputs.mobile_expensify_pr }}
49+
run: |
50+
cd Mobile-Expensify
51+
git fetch origin pull/${{ github.event.inputs.mobile_expensify_pr }}/head:pr-${{ github.event.inputs.mobile_expensify_pr }}
52+
git checkout pr-${{ github.event.inputs.mobile_expensify_pr }}
53+
echo "Checked out Mobile-Expensify PR #${{ github.event.inputs.mobile_expensify_pr }}"
54+
4255
- name: RNEF Remote Build - iOS
4356
# rnef v2
4457
uses: callstackincubator/ios@7847e0676242cefa801cba8ede6736140b7bae91

.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 1009020102
118-
versionName "9.2.1-2"
117+
versionCode 1009020118
118+
versionName "9.2.1-18"
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

assets/images/expensify-logo--dev.svg

Lines changed: 1 addition & 1 deletion
Loading

0 commit comments

Comments
 (0)