Reputation: 20130
I was following this question but it doesn't answer my question completely.
What is real advantage of apklib from jar?
Possible answers:
But I can easily put resources to jar file as well
But if I open apklib
I don't see dex
or something other related to android. Even more I see plain sources inside.
So what is real purpose to keep/distribute library in apklib
format?
Upvotes: 7
Views: 3299
Reputation: 1006869
But I can easily put resources to jar file as well
No, you cannot, at least not in terms of the Android resource system. Being able to create a JAR (or similar package) that contains Android resources is one of the objective of the new build system that Google is working on at the present time.
Upvotes: 12