E.g look at applications like the Gauges app from Github and how many
libraries (dependencies) it uses.
https://github.com/github/gauges-android
Lots of apps using frameworks like ActionBarSherlock, Roboguice, and
many more as well as plain libraries like gson, ksoap2-android ...
manfred
http://simpligility.com
The fact that this is mostly in future tense, and the fact that the
R17 preview doesn't seem to mention any of it, suggests that this
stuff didn't make R17. Am I correct in this assessment?
Thanks!
--
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy
_Android Programming Tutorials_ Version 4.1 Available!
As we add support for packaged Android library (single package with code + resources), what you call and Android Jars would simply be a packaged library with no resources in it.The issue is that even with a packaged library, the dependency setup in a project is more complex as you have a required order to resolve resource overlay, which is not the case for straight code-only jar that you can dump in the libs folder.We'll probably:- make packaged library have a different extension to differientiate them- make the packaging feature be smart to detect lack of resources and create standard jar instead.Xav