Author Archives: blundell

[TUT] Email Feedback from Users (device information)

TweetI recently updated my McDonalds Calories application and improved the feedback facilities. Whilst I was doing this I realised it would be good to do in all of my apps and therefore wrote this utility class just for the purpose. The idea is to gain more information about the users devices when they send you [...]

[TUT] Easier / Quicker Generic Collection Creation

TweetSick of repeating your generics declaration?Sick of repeating your generics declaration? For a quick and easy way to create a collection of objects you can do the below. Create yourself a util class: Then each time you only need to declare your generics once. This is due to Type Inference. Inspired by Joshua Bloch’s – [...]