This mostly theoretical question regarding Android and Java. I want to know which Java packages are used by Android Application Framework? I could guess maybe most of them. But I want to know those essential packages used by application framework in particular. Thanks!
This mostly theoretical question regarding Android and Java. I want to know which Java
Share
If you refer to the Android Package Index, you can see the packages that form the Android platform.
Packages from standard Java start with either
javaorjavax, for example:java.textjava.utiljava.util.concurrentjavax.netjavax.net.ssljavax.security.authThere are many more packages than this, so I won’t list them all, but refer to the documentation to see the complete list.