hpique
hpique

Reputation: 120324

Reuse tips for Android

Android resources and their automatically generated references simplify the development of one app a great deal. But they also complicate the reuse of Android activities in multiple projects, and in general of any component that uses resources.

Library projects are a limited alternative. A project can depend on many library projects, but a library project can't depend on another, and adding additional JAR dependencies is not straightforward.

How do you reuse Android components (not plain old Java code)? Any tips and tricks?

Upvotes: 3

Views: 301

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006614

I have some tips, tricks, and tools wrapped up in the Android Parcel Project.

Upvotes: 1

Related Questions