Back to project page MyResumeAndroidApp.
The source code is released under:
Apache License
If you think the Android project MyResumeAndroidApp 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.fernandocejas.mycv; /* w w w . j av a 2 s . c om*/ import android.app.Application; /** * The android10 coder: http://www.android10.org/ * @author Fernando Cejas <http://fernandocejas.com/> */ public class MyCVApplication extends Application { private static MyCVApplication singleton; public static MyCVApplication getInstance() { return singleton; } @Override public final void onCreate() { super.onCreate(); singleton = this; } }