I know Flutter is compiled AOT (ahead-of-time). However, it seems that all the method/class/field/... names will still be visible in the final compiled output (.apk or .ipa). I know obfuscating can use non-readable strings to replaces such names, but I cannot use it since Sentry does not support it well.
Thus, my question is: Will Flutter code be reverse-engineered easily without obfuscation? (If no, I will just disable obfuscation.)
Thanks very much!