Back to project page android-facade-example.
The source code is released under:
MIT License
If you think the Android project android-facade-example listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ruenzuo.weatherapp.application; //from w w w.j a v a 2 s . c o m import com.activeandroid.app.Application; import com.ruenzuo.weatherapp.managers.WeatherAppManager; /** * Created by ruenzuo on 24/05/14. */ public class WeatherAppApplication extends Application { @Override public void onCreate() { super.onCreate(); WeatherAppManager.INSTANCE.setContext(getApplicationContext()); } }