Example application for showing some of the features of AndroidAnnotations. This application lets you search for League of Legends summoners and see statistics of their last matches.
This project has been produced to illustrate and provide an example for a talk given by me to introduce AndroidAnnotations. The slides related to the talk can be accessed in slideshare (Spanish).
##Configuration To use this application, the only configuration needed is to change the League of Lengeds API Key in the Utils.java class. You can get one at the League Of Legends Developer Console.
public class Utils {
public static final String LOL_API_KEY = "XXX";
...
}