From 89e74d824d00589d3682d50859d02eddeeb1d3bc Mon Sep 17 00:00:00 2001 From: Oscar Bazaldua <511911+oscb@users.noreply.github.com> Date: Thu, 30 Nov 2023 15:41:30 -0800 Subject: [PATCH] ci: check if release app launches properly --- examples/AnalyticsReactNativeExample/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/AnalyticsReactNativeExample/package.json b/examples/AnalyticsReactNativeExample/package.json index bcc9f9ec..dc2ef1a6 100644 --- a/examples/AnalyticsReactNativeExample/package.json +++ b/examples/AnalyticsReactNativeExample/package.json @@ -8,10 +8,10 @@ "pods": "pod-install --repo-update", "lint": "eslint .", "start": "react-native start", - "build:android": "yarn detox build --configuration android.emu.debug", - "test:android": "yarn detox test --configuration android.emu.debug", - "build:ios": "yarn detox build --configuration ios.sim.debug", - "test:ios": "yarn detox test --configuration ios.sim.debug", + "build:android": "yarn detox build --configuration android.emu.release", + "test:android": "yarn detox test --configuration android.emu.release", + "build:ios": "yarn detox build --configuration ios.sim.release", + "test:ios": "yarn detox test --configuration ios.sim.release", "start:e2e": "RN_SRC_EXT=e2e.mock.ts,e2e.mock.js yarn start", "android:deeplink": "adb shell am start -a android.intent.action.VIEW -d \"segmentreactnative://hello\" com.example.segmentanalyticsreactnative", "ios:deeplink": "xcrun simctl openurl booted segmentreactnative://hello",