How to create an inclusive aar file in Android?

I want to create a hymnal app in android for my phone.

Vivek Singh at Quora Visit the source

Was this solution helpful to you?

Other answers

If you are good with most things being read-only (like rolling out a new version whenever you want to add a new song), then you can just use assets and load files from there. That’s like a simple folder you can take files from. Melodies (like sound files) as assets - probably you won’t be changing them. Example: http://stackoverflow.com/questions/8106694/play-media-files-located-in-assets-folderLyrics - actually you can store that in simple TXT (Json) files as assets/or “/raw” folder as well. Just remember to have some kind of “identificator” field (like “lowercase_song_name_or_something_similar_unique” ) for bookmark identification.For user-selected “favourite” or “last” bookmarks use the standard Shared preferences, that’s what they are created for.There are multiple ways of implementing the same thing. When you get up to speed and find yourself limited by these options, you can look at Realm database (like Shared Preferences, but structured and searchable).

Oskars Bērziņš

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.