Category: Uncategorized

04/01/2017

3 min read All Android developers, new and seasoned, want to be as productive as possible. While not having to worry too much about trivial things such as moving JIRA tickets over from column to column (from ToDo to In Progress, to In Review, etc.)

03/29/2017

9 min read As software developers, we try our best to do what is right and make sure that we are not incompetent, and try to have others and our employers trust in the code we write. We all try to follow best practices and apply good architecture patterns, but sometimes many of…

03/18/2017

4 min read There are a number of ways to authenticate a user to access an application, or a certain feature within an application, such as checkout, and fingerprint is one of them. For this post instead of going through the code step by step, i have added in-code comments, and will be…

03/10/2017

7 min read I recently wrote an article about using a Sync Adapter on Android, while it is true that it can do what it was meant to do in an efficient manner, there are certainly better and less robust alternatives out there. Today we are going to talk about one of my…

02/24/2017

14 min read There are numerous of ways that we periodically can sync local data with a backend server, without opening up the app. Some ways are better than others, but today id like to take some time to talk about Androids preferred method of doing this. Using the sync adapter framework. The implementation it self…