Reputation: 921
For a summer project I'm working on a schedule application. Because I wasn't able to find a calendar-like AdapterView
, I started building one myself (In progress result). Though still in progress, I'd like to share this ScheduleView
as a library on GitHub, but I'm not sure how I should structure my Android Studio project so it contains the source and an example implementation, and other people can require it easily.
Upvotes: 2
Views: 297
Reputation: 1335
You should take as example another project.
Android Menu-Drawer, for example, has a simple and easy to understand project structure :
And other files related to gradle and the project :
Upvotes: 1