0

I have been using tools like androgurad, dedexer and apktool to decompile android apk files and have been viewing the statistics. While analysing the packages dependencies in apk files, I noticed that there are internal and external packages. Please explain the difference between the two.

Annamalai N
  • 371
  • 1
  • 7
  • 16

1 Answers1

1

Usually those packages which are not available to developers through the official SDK they are called internal.

Alexander Kulyakhtin
  • 47,782
  • 38
  • 107
  • 158
  • Oh I see, could you please give some examples of such packages? Are ad libs, dev tool, analytic packages considered as external packages? – Annamalai N Sep 13 '13 at 04:57
  • How about the main code of the app being developed, is it considered as an external package? – Annamalai N Sep 13 '13 at 05:29