Sentry is working properly in debug mode and but when I make a release APK and run it it doesn't give proper information like it gave in debug APK. and I cant identify any issue with the code . if anyone knows about this issue please help.
Sentry not working properly in react native release Apk
1.2k views Asked by Hamza Manan At
1
There are 1 answers
Related Questions in REACT-NATIVE
- ussd reader in Recket Native module
- I can't make TextInput to auto expand properly in Android
- expo config plugin use import instead of require
- Custom Sound for Expo Push Notifications Only Works in Foreground
- run RTK dispatch on gesture start with React Native
- Should I set Back-End for my React Native application?
- using infoPlist in app.json for expo project seems to not be working
- Anyone have success configuring react-native-home-indicator?
- KeyboardAvoidingView makes a messy the flexbox
- I am getting lots of errors when building react native app in Xcode
- Search and highlight text of current text in PDFKit Swift
- Flatlist Sometimes Capped at 10 Items Bug
- Is there any way to page transition in react native (stack navigation)
- Screen inside Stack.Navigator not visible in React-Native
- React Native stopwatch implementation slow on iOS
Related Questions in SENTRY
- How to configure Sentry Webpack sourcemap uploading in Quasar?
- Cannot able to see the issues in Sentry dashboard
- Setup sentry to only log transactions occuring on a specific subpage
- Sentry with loggingIntegration in python not observing event_level=logging.CRITICAL
- Safari parsing JSON-LD error on 'telephone' ('Object.prototype.hasOwnProperty.call(e,"telephone")')
- Sentry, sequelizejs: Is there a way to capture the SQL statement that cause the error?
- Execution data for class does not match in Jacoco when use the latest Sentry dependencies
- Failed to resolve plugin for module "@sentry/react-native/expo"
- Sentry crash reports with react native ignite app
- Next.js sending strange request to routes
- Chrome extension refused to create a worker from blob because it violates the following Content Security Policy
- Is react-native in conjunction with Sentry javascript .sdk capable of handling offline logging
- Sentry API Retrieve Event
- django.security.csrf: Forbidden (Origin checking failed - https://sentry.domain.com does not match any trusted origins.)
- Sentry doesn't show all transactions and Web Vitals
Related Questions in RELEASE-APK
- ColorFilter not applying in release mode
- Getting Kotlin version issue while creating release-apk in flutter?
- Ionic android release build apk has below issue
- React native Kitten UI black screen at startup of the release APK
- Release apk build failed
- youtube_player_flutter and cached_network_image is not working in release apk
- Removing rn_dev_preference XML file from React Native release APK decompiled source
- Flutter jitsi meet not work on release apk
- Missing class java.lang.management.ManagementFactory when use the obfuscation method Generate Signed APK
- Firebase Crashlytics not generating crash report for release APKs Android
- How can I integrate react-native-branch on React Native EXPO Managed Workflow and Bare Workflow project
- APK(s) generated successfully for module 'tk_app.app' with 0 build variants android dolphin
- react native android release apk navigation error
- Android release crash with exception net.sqlcipher.database.SQLiteException
- Flutter apk file building taking huge time
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Minified Names in Production When bundling for production, React Native will minify class and function names to reduce the bundle size. This means that you won't get the full original component names in your Touch Event breadcrumbs or Profiler spans.
A way to work around this is to set the displayName on all the components you want to track with touch events or to pass the name prop to the Profiler components. However, you can also configure Metro bundler to not minify function names by setting these options in metro.config.js:
Paste the above snippet in your metro.config.js file in react native project