You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`These source map archives help Sentry identify where to look when code is minified. By providing this information, you can get better context for your stack traces when debugging. To learn more about source maps, [link: read the docs].`,
'For React Native projects, ensure you [strong:run the app in release mode] and execute the scripts below to upload source maps for both iOS and Android:',
227
+
{strong: <strong/>}
228
+
)}
229
+
</div>
230
+
<CodeSnippet
231
+
dark
232
+
language="bash"
233
+
tabs={[
234
+
{label: 'Expo',value: 'expo'},
235
+
{label: 'React Native',value: 'react-native'},
236
+
]}
237
+
selectedTab={selectedTab}
238
+
onTabClick={value=>setSelectedTab(value)}
239
+
>
240
+
{selectedTab==='expo'
241
+
? '# First run this to create a build and upload source maps\n./gradlew assembleRelease\n# Then run this to test your build locally\nnpx expo run:android --variant release\n\n# iOS version (pending confirmation)\nnpx expo run:ios --configuration Release'
? t('No source maps uploads matching your search')
267
+
: t('No source maps uploaded')
268
+
}
269
+
description={
270
+
query
271
+
? tct(
272
+
'Try to modify or [clear:clear] your search to see all source maps uploads.',
273
+
{
274
+
clear: (
275
+
<Button
276
+
priority="link"
277
+
aria-label={t('Clear Search')}
278
+
onClick={onClearSearch}
279
+
/>
280
+
),
281
+
}
282
+
)
283
+
: tct(
284
+
'Source maps allow Sentry to map your production code to your source code. See our [docs:docs] to learn more about configuring your application to upload source maps to Sentry.',
0 commit comments