This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from androguard import misc | |
""" | |
The info of methods given by androguard has a different format between that given by Soot. | |
To facilitate the FlowDroid tool, I implemented the tool to transform the format. | |
The script works on Androguard 3.0-dev. | |
The main function is getFuncNames(), we use androguard API AnalyzeAPK to traverse all functions in all classes | |
and transform them into soot formats. | |
""" |