Back to project page android-component-location.
The source code is released under:
MIT License
If you think the Android project android-component-location 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.yingchn.android; /*w w w .j ava 2s. c om*/ import android.app.Application; public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); AppContext.setContext(this); } @Override public void onTerminate() { super.onTerminate(); AppContext.setContext(null); } }