Open buenaflor opened 1 day ago
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
libapp.so
libflutter.so
Similar to cocoa: https://github.com/getsentry/team-mobile/issues/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
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: https://github.com/getsentry/team-mobile/issues/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