Back to project page deskflix.
The source code is released under:
Apache License
If you think the Android project deskflix 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.urucas.deskflix; /*from www . j a v a 2 s . co m*/ import android.app.Application; /** * Created by Urucas on 9/3/14. */ public class DeskflixApp extends Application { private static DeskflixApp _instance; public DeskflixApp() { super(); _instance = this; } public static DeskflixApp getInstance() { return _instance; } }