Back to project page PocketReckoner.
The source code is released under:
MIT License
If you think the Android project PocketReckoner 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 org.kosmakoff.pocketreckoner.app; /*from w ww .ja va 2 s.c o m*/ import android.app.Application; import android.content.Context; public class PocketReckonerApplication extends Application { private static Context sContext; @Override public void onCreate() { super.onCreate(); PocketReckonerApplication.sContext = getApplicationContext(); } public static Context getAppContext() { return PocketReckonerApplication.sContext; } }