Skip to content

Commit 47fddb5

Browse files
committed
added call to discovery service
1 parent 1d153f1 commit 47fddb5

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

apps/box/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ android {
8686
applicationId "land.fx.blox"
8787
minSdkVersion rootProject.ext.minSdkVersion
8888
targetSdkVersion rootProject.ext.targetSdkVersion
89-
versionCode 260
90-
versionName "2.5.4"
89+
versionCode 261
90+
versionName "2.5.5"
9191

9292
testBuildType System.getProperty('testBuildType', 'debug')
9393
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'

apps/box/ios/Box.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@
589589
"$(inherited)",
590590
"@executable_path/Frameworks",
591591
);
592-
MARKETING_VERSION = 2.5.4;
592+
MARKETING_VERSION = 2.5.5;
593593
OTHER_LDFLAGS = (
594594
"$(inherited)",
595595
"-ObjC",
@@ -627,7 +627,7 @@
627627
"$(inherited)",
628628
"@executable_path/Frameworks",
629629
);
630-
MARKETING_VERSION = 2.5.4;
630+
MARKETING_VERSION = 2.5.5;
631631
OTHER_LDFLAGS = (
632632
"$(inherited)",
633633
"-ObjC",

apps/box/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "box",
3-
"version": "2.5.4",
3+
"version": "2.5.5",
44
"private": true,
55
"dependencies": {
66
"@babel/core": "*",

apps/box/src/app/App.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import { fula } from '@functionland/react-native-fula';
3131
import { AppKitProvider, AppKit } from '@reown/appkit-react-native';
3232
import { appKit } from '../config/appKitConfig';
3333
import { configureBackgroundBloxCheck } from '../services/backgroundBloxCheck';
34+
import { refreshRelayCache } from '../utils/helper';
3435

3536
if (Platform.OS === 'android') {
3637
if (UIManager.setLayoutAnimationEnabledExperimental) {
@@ -58,6 +59,11 @@ export const App = () => {
5859
useEffect(() => {
5960
loadAllCredentials();
6061
}, [loadAllCredentials]);
62+
63+
useEffect(() => {
64+
refreshRelayCache();
65+
}, []);
66+
6167
return (
6268
<GestureHandlerRootView style={styles.flex1}>
6369
<SafeAreaProvider>

0 commit comments

Comments
 (0)