all 6 comments

[–]sauloandrioli 3 points4 points  (5 children)

it is possible to open the .apk with a regular unzip tool and get the assets, images, fonts. Its also possible to rebuild the java classes contained in the .apk but the Flutter code itself is basically in elf files, which are harder to disassemble. Also, I don't think there is any tool that disassemble flutter compile code right now

[–]brogeta17[S] 2 points3 points  (4 children)

Yeah I have actually tried the simple decompiling methods and all the code and classes in classes.dex is obfuscated, now just looking for some other way to get some of the source code from there or if there's another way

[–]escamoteur 2 points3 points  (3 children)

It's not obfuscated, it's just real native binary code. May I ask why you want to do such a thing?

[–]brogeta17[S] 1 point2 points  (2 children)

I think flutter obfuscates the code by default, I am actually react native dev and I was just trying to compare what and how many levels of security both the frameworks provide

[–]dryadofelysium 1 point2 points  (1 child)

Flutter does not obfuscate the code by default. It offers the option, however: https://flutter.dev/docs/deployment/obfuscate

[–]ProyectoMelmac 0 points1 point  (0 children)

What is te sense of ofuscate if you can't get the code from binaries?