Skip to content

Commit c04e8d7

Browse files
authored
Merge pull request #3625 from Expensify/update-staging-from-main
2 parents 3c0bf4d + 2ceae28 commit c04e8d7

File tree

6 files changed

+7
-12
lines changed

6 files changed

+7
-12
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ android {
148148
minSdkVersion rootProject.ext.minSdkVersion
149149
targetSdkVersion rootProject.ext.targetSdkVersion
150150
multiDexEnabled rootProject.ext.multiDexEnabled
151-
versionCode 1001006902
152-
versionName "1.0.69-2"
151+
versionCode 1001006903
152+
versionName "1.0.69-3"
153153
}
154154
splits {
155155
abi {

ios/ExpensifyCash/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dict>
3131
</array>
3232
<key>CFBundleVersion</key>
33-
<string>1.0.69.2</string>
33+
<string>1.0.69.3</string>
3434
<key>ITSAppUsesNonExemptEncryption</key>
3535
<false/>
3636
<key>LSApplicationQueriesSchemes</key>

ios/ExpensifyCashTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.0.69.2</string>
22+
<string>1.0.69.3</string>
2323
</dict>
2424
</plist>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "expensify.cash",
3-
"version": "1.0.69-2",
3+
"version": "1.0.69-3",
44
"author": "Expensify, Inc.",
55
"homepage": "https://expensify.cash",
66
"description": "Expensify.cash is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

src/Expensify.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {View, AppState} from 'react-native';
55
import Onyx, {withOnyx} from 'react-native-onyx';
66

77
import BootSplash from './libs/BootSplash';
8-
import StatusBar from './libs/StatusBar';
98
import listenToStorageEvents from './libs/listenToStorageEvents';
109
import * as ActiveClientManager from './libs/ActiveClientManager';
1110
import ONYXKEYS from './ONYXKEYS';
@@ -152,11 +151,7 @@ class Expensify extends PureComponent {
152151
}
153152

154153
hideSplash() {
155-
BootSplash.hide({fade: true}).then(() => {
156-
// To prevent the splash from shifting positions we set status bar translucent after splash is hidden.
157-
// on IOS it has no effect.
158-
StatusBar.setTranslucent(true);
159-
});
154+
BootSplash.hide({fade: true});
160155
}
161156

162157
render() {

0 commit comments

Comments
 (0)