Bonjour!I'm Sapan, a Switzerland based software developer and what I enjoy the most is developing for iOS and Android. Among other things, I also work on Shyahi trying to make it easy to present a unified presence across all social networks.
This is the final of the 6 post series where we built a music player app from scratch. A quick recap of what we have done so far. We learned the basics of playing music using Media Player on Android. The Media Player is implemented in a Service so we…
Realm is a mobile database: a replacement for SQLite & Core Data that works for both iOS and Android. It has a really concise API and works extremely fast. Let's see how we define a model in Realm: public class User extends RealmObject { @PrimaryKey private int identifier; private String firstName;…