Reputation: 18276
I want to build a java library with some useful things I done to Android. Just like my other project: https://github.com/MarkyVasconcelos/Towel
My question is, what is the best way to share a library on Android?
Source codes from a entirely Android project(res, src, Manifest, etc..)? Only source codes(.java)? A generated jar with the 'src' folder?
Thanks.
Upvotes: 0
Views: 459
Reputation: 49361
Although never done myself I think you have to provide an Android Library Project if your library contains android specific content.
Upvotes: 2
Reputation: 1007624
I'd distribute an Android library project. I have several such projects in my various GitHub repositories -- those links are just three of 'em.
Upvotes: 3