Few years ago I worked on a project where I had to get hold of the 31,102 verses of the English Bible, and use it to develop an Android app that helps people memorize Bible verses. This app used a memorization technique called spaced repetition which is popularly used in the flash card app - … Continue reading Created a GraphQL Bible API in 2 Days using Hasura (Here’s How)
Tag: database
Sending a Request to a Server from your Android app
Here is a tutorial on how to send HTTP requests from your Android app to a server using the Android Async Http client library
How to use a pre-populated database in Android?
Using local databases for persisting data is fairly easy in Android because of the in-built SQLite Database it provides. If you have used it before, you would know that you would have to extend a helper class named 'SQLiteOpenHelper' for the purpose. The SQLiteOpenHelper class is a part of the Native Android library, therefore you … Continue reading How to use a pre-populated database in Android?