Serializable vs Parcelable

In Android we know that we cannot just pass objects to activities. The objects must be either implements Serializable or Parcelable interface to do this. Serializable Serializable is a standard Java interface. You can just implement Serializable interface and add override methods.The problem with this approach is that reflection is used and it is a … [Read more…]

Implementing In-App Billing for Android

Google provides an easy to use library that is able to handle the payment and querying tasks and shields away lots of the complexity behind it. In this article I present how I implemented the In-App billing functionality for my Live Wallpaper and how I solved the problems that I faced. To be able to … [Read more…]