Back to project page Boxee-Thumb-Remote.
The source code is released under:
Apache License
If you think the Android project Boxee-Thumb-Remote 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 net.evendanan.android.thumbremote; /*from w w w. ja v a 2s .c o m*/ import android.app.Application; public class RemoteApplication extends Application { private static Settings msConfig; @Override public void onCreate() { // StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder() // .detectAll() // .penaltyLog() // .build()); // StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder() // .detectAll() // .penaltyLog() // .penaltyDeath() // .build()); super.onCreate(); msConfig = new Settings(getApplicationContext()); } public static Settings getConfig() { return msConfig;} }