Android devs, what's your salary? 13 years agoAustralia. 80k. 2 years. I could go 120k, but it would involve losing the cultural and company benefits. 0ThreadHN
Serialise and deserialise any Java object to Shared Preferences in Android 13 years agoIt's pretty simple to use.Saving objects: Animal animal = new Animal("Lassie", "Dog"); DroidPrefs.instance(context).put("key", animal).apply();Loading objects: Animal animal = DroidPrefs.instance(context).get("key", Animal.class); 0ThreadHN
The Golden Rules of JSON - A collaborative set of rules for JSON API developers 13 years agoRight now there are only three rules, all of which I've run into in the past two weeks.I hope that this becomes a go to guide for people developing JSON APIs so they know how to implement it correctly, or more importantly, how not to implement it. 0ThreadHN