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
In Flutter when loading debug images on Android we fetch all (up to 82) but most of the time only libapp.so and libflutter.so is needed so it makes sense to only fetch images that are referenced in the stacktrace
buenaflor
changed the title
Add internal hybrid sdk api for fetching debug images that were referenced in the stacktrace
[Android] Add internal hybrid sdk api for fetching debug images that were referenced in the stacktrace
Nov 21, 2024
@buenaflor sure, take it all! I don't think there's anything specific (I don't know the native part that well though), from what I know the images list will be loaded lazily and cached in the native layer, and then you can add some methods to filter out only the necessary ones for you.
Problem Statement
In Flutter when loading debug images on Android we fetch all (up to 82) but most of the time only
libapp.so
andlibflutter.so
is needed so it makes sense to only fetch images that are referenced in the stacktraceSolution Brainstorm
Similar to cocoa: getsentry/team-mobile#158
Implementation how we access it in Cocoa on Flutter: https://github.com/getsentry/sentry-dart/blob/8549081071fd2bf85331d9988710b968ced8b2f1/flutter/ios/Classes/SentryFlutterPluginApple.swift#L280C1-L307C1
The text was updated successfully, but these errors were encountered: