skylot / jadx

Dex to Java decompiler
Apache License 2.0
41.98k stars 4.9k forks source link

[feature] flutter app #2352

Open debuggerfool opened 4 days ago

debuggerfool commented 4 days ago

Describe your idea

its time to war with flutter app?

jpstotz commented 4 days ago

Flutter code is compiled to native (arm/arm64/x86/x86_64) code and stored in the file libapp.so. Jadx handles Java and Dex byte code, native code is a bit out of scope.

Please use Ghidra, IDA, JEB or a similar decompiler that is specialized on decompiling native code.

Note that Android Flutter apps usually contain standard libraries in DEX code format, this code can be decompiled using Jadx without problems, but that code usually doesn't includes the app specific code.