Skip to content Skip to sidebar Skip to footer

Flow Analysis For Android

Is there a control flow graph generator for Android applications. (preferrably open source) I wish to do some flow analysis on applications. But I could not find any such static an

Solution 1:

you can use Androguard to generate CFG. Other way is to decompile the app to smali using apktool and write our own CFG generator.

Solution 2:

Post a Comment for "Flow Analysis For Android"