While working on android apps we use a number of utility classes to encapsulate certain logic that we need on multiple places in the application. We use this android utility classes to display or hide UI elements, to check the network connection etc. We are using Kotlin in this example,Read More →

This example is targeting conversion of Base64 String to Image and representing that image on screen. The advantages of using Base64 string to image is the load times, especially if you are getting the image from server. The downside of using Base64 String is that the encoded file will beRead More →