We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e7d5de commit 2e37d6fCopy full SHA for 2e37d6f
src/bundle.ts
@@ -149,6 +149,14 @@ async function runReactNativeBundleCommand({
149
const bundleParams = await checkPlugins();
150
const isSentry = bundleParams.sentry;
151
152
+ if (isSentry) {
153
+ if (platform === 'ios') {
154
+ process.env.SENTRY_PROPERTIES = 'ios/sentry.properties';
155
+ } else if (platform === 'android') {
156
+ process.env.SENTRY_PROPERTIES = 'android/sentry.properties';
157
+ }
158
159
+
160
let bundleCommand = 'bundle';
161
if (usingExpo) {
162
bundleCommand = 'export:embed';
0 commit comments