-
-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support InAppIncludes #472
Comments
a workaround would be getsentry/sentry-java#1220 but this seems very wrong. Android events look like this: "function": "Java_io_sentry_samples_android_NativeSample_crash", Art frames look like this: "function": "art::ArtMethod::Invoke", So I guess it's reasonable to mark them as inApp if the inAppIncludes is within the function or package. |
After the first round of feedback I’m really unsure how this is supposed to work.
This means that neither
So if we for example make |
I'm generally not sure how in-app prefixes is supposed to work with the obfuscation on one hand and debug symbols on the other. Why do we not let people do this via server side enhancements and shipping better defaults there? |
JNI methods are not obfuscated via proguard as they need to match in Java and C code. |
turns out this would be still a bad inApp classification and it'd be better done on the server with default grouping rules, a DACI and sentry issue is the output of this change, hence closing it. |
Description
Support InAppIncludes for Android and mark frames as inApp if part of the frame's function or package
When does the problem happen
Frames are always inApp=false on Android events and grouping is suboptimal
Environment
any Android version
Steps To Reproduce
Just capture an event and see
in_app
in the raw JSONThe text was updated successfully, but these errors were encountered: