reverse-engineeringdecompilingandroidandroid-applicationinfo

Package dependencies in Android apk files


I am performing Android app reverse engineering (decompilation and further analysis). I wish to analyse the package dependencies between different packages inside the same apk file. Is there any tool which does this? Else, how can I deduce package dependency in apk files?


Solution

  • I wish to analyse the package dependencies between different packages inside the same apk file. Please let me know if there is any tool which does this

    A tool called Dexter is available to find out all the packages present in an apk. Also, if there is a program dependency among any 2 packages, Dexter show it with an edge. It could be noted that the edges do not have any weight to indicate the strength of the dependency.