Manoel Aranda Neto

Results 1029 comments of Manoel Aranda Neto

I just did `adb push` from the computer to the emulator, installed the app via the file explorer, and still getting `installerStore=true` correctly. @Nohus how do you reproduce this problem?...

Gotcha, I will leave the Android team to handle this then, thanks for the feedback @Nohus

@romtsn @markushi @stefanosiano please double check if the priority is still p2 or not.

Flutter still supports 19-20 best-effort https://docs.flutter.dev/reference/supported-platforms @krystofwoldrich can you confirm for RN? Maybe we bump to 19 for now?

Outdated, a new PR would make more sense.

@ueman I believe this is now possible? https://docs.flutter.dev/deployment/obfuscate#supported-targets `macOS` should work already, I believe, since we already use the Sentry Cocoa SDK as well, after uploading debug symbols of course.

Ok removed the limitation https://github.com/getsentry/sentry-docs/pull/7156/files This has been tested already https://github.com/getsentry/sentry-dart/blob/8ccf7824c7322eebfda677dcce9d0ee25614b31a/flutter/example/run.sh#L33

I don't know if the Dart stdlib provides an API to read the image address of all the loaded libraries in memory. `currentMirrorSystem().libraries` via `dart:mirrors` give you the libraries, but...

@ueman this is about pure Dart apps, Flutter is already using The Native SDKs to read all the loaded libraries in memory. Obviously, it'd be nice if the Dart stdlib...

@mraleph indeed, I meant the dynamic libraries as in [images](https://develop.sentry.dev/sdk/event-payloads/debugmeta/#attributes). I'll take a look if we can symbolicate without this internally, and try to use `isolate_dso_base` and/or `vm_dso_base` instead. What...