Back to project page android-forensics.
The source code is released under:
MIT License
If you think the Android project android-forensics 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 pt.ist.androidforensics; // w w w . j a v a 2 s.co m import android.app.Application; import android.content.Context; public class AndroidForensicsApp extends Application{ private static AndroidForensicsApp instance; public AndroidForensicsApp() { instance = this; } public static Context getContext() { return instance; } }