On android the apk contains all (?) dependencies, ...
# announcements
k
On android the apk contains all (?) dependencies, that's not generally how the JVM works though. The gradle default don't build a fat jar for example, you have to ship the dependencies as separate jar files.
g
All, excluding Android Framework itself
k
And wasn't there something about SQL and HTTP libraries being included too?
g
It depends, you can use Android Framework one, like HttpUrlConnection or SQL from the framework
k
I'm not really up-to-date on Android, so I putthe
(?)
as a disclaimer.
g
but it’s relatively rare to include own binaries of sqlite. Also most of UI things are from Framework
I just want to say even on Android where you bundle most of your dependencies together with your app you have big dynamically linked pieces, like Android Framework
👍 1