OS:
Platform:
SDK:
SDK version: 5.17.0
react-native version: 0.73.0
Are you using Expo?
Are you using sentry.io or on-premise?
If you are using sentry.io, please post a link to your issue so we can take a look:
N/A
Configuration:
(@sentry/react-native)
withSentry({
// .. my expo config
}, {
organization: "my-organization",
project: "my-project",
});
I have the following issue:
I can't see an easy way to set the SENTRY_DISABLE_AUTO_UPLOAD environment variable in .xcode.env.local so that building my app in xcode locally completes without popping up an warning about failure to upload:

and clicking "Show details" reveals:

As an Expo managed workflow user I am not in control of .xcode.env.local, it gets generated by expo prebuild. I can write a custom Expo plugin to modify that file but it seems like a lot of effort. Ideally I'd like to see this supported:
withSentry({
// .. my expo config
}, {
organization: "my-organization",
project: "my-project",
uploadSourcemaps: false, // for example
});
Steps to reproduce:
- Create Expo app with managed workflow
- Install @sentry/react-native per the docs
expo prebuild
- Open xcode and attempt to build the app
Actual result:
As described above.
Expected result:
No errors about uploads when I'm building locally.
OS:
Platform:
SDK:
@sentry/react-native(>= 1.0.0)react-native-sentry(<= 0.43.2)SDK version: 5.17.0
react-nativeversion: 0.73.0Are you using Expo?
Are you using sentry.io or on-premise?
If you are using sentry.io, please post a link to your issue so we can take a look:
N/A
Configuration:
(
@sentry/react-native)I have the following issue:
I can't see an easy way to set the
SENTRY_DISABLE_AUTO_UPLOADenvironment variable in.xcode.env.localso that building my app in xcode locally completes without popping up an warning about failure to upload:and clicking "Show details" reveals:
As an Expo managed workflow user I am not in control of
.xcode.env.local, it gets generated byexpo prebuild. I can write a custom Expo plugin to modify that file but it seems like a lot of effort. Ideally I'd like to see this supported:Steps to reproduce:
expo prebuildActual result:
As described above.
Expected result:
No errors about uploads when I'm building locally.