You can check the list here on freeappsforme.
Reading Diary for iOS released
App contains same functionality as new Android version. You will find detail info here. Check it out.
Reading Diary 4 Released
New and completely from scratch in Flutter rewritten version of Reader’s Diary was released on Android. And iOS version is to come soon. App now offers much more. There is new UI with light and dark theme and new filtering possibilities. New is also search for book by it’s author or name. There are new parameters to fill: book format, reading status, end of reading date, ownership, bookshelf, tags. There is new Overview with statistics. Apple sign-in. Some of these functions are available as in-app purchase. Check it out.
Suntime featured by freeappsforme
Suntime has been reviewed by freeappsforme.com. And they liked it:) Check it out.
Colors – Game
Suntime 2
Inserting multiple rows into Sqlite database with Content Providers
I have just found a draft of this post. I know this is a bit outdated but I think this might provide some value to someone still using Content Providers.
So, how can you insert multiple rows into the database at one using SQLite with ContentProvider?
Many separate inserts
Naive approach would be similar to this:
for (int i = 0; i < list.size(); i++) { Book book = list.get(i); ContentValues cv = getContentValues(book); cr.insert(CONTENT_URI, cv); }
Adding backendless sync to existing offline app with Firebase
My application Reader‘s Diary is on Google Play store for more than 4 years. It was my first more complex application when I started self-learning programming. And you can guess that from some still remaining fragments of horrible code:) I wrote application primarily for myself, I use it whenever I start or finish reading a book. However, during these years it found few hundred active users. As my coding and UI skills improved, so has app, and now it is quite different from it‘s first version. Some poor initial design choices are however still there.
Planning new version
I was quite happy with the previous version. It fulfilled all my needs. Not taking small fix into account, it was in store for 18 months. In the meantime, I got some requests from users. Some wanted to sync their books, some wanted to add book cover pages. Showing cover images was an easy thing. I already have a function to search books by ISBN code using Google Books service so I only needed to save image url from the search result. For sync, I decided to use Firebase.
Continue reading
Reader’s Diary 3.0
What is Application class good for?
The Application class is the base class of Android application. It is the first class that is initialized when the app is started. Therefore you can initialize here everything that needs to be ready when an activity or other application component is started.
When to override Application class?
Application class doesn’t have to be overridden all the time. I presume most of simple apps can use default Application class implementation without problems. Android documentation states that
There is normally no need to subclass Application. In most situations, static singletons can provide the same functionality in a more modular way. If your singleton needs a global context (for example to register broadcast receivers), include Context.getApplicationContext() as a Context argument when invoking your singleton’s getInstance() method.
Main reasons to override Application class are following:
• Getting access to the Application Context
• Global initialization
• Getting access to global methods and data
Continue reading