Back to project page mobile-android.
The source code is released under:
MIT License
If you think the Android project mobile-android 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.manyconf.conference; /*from www . j av a2s . c o m*/ /** * A class whose sole job is to define secret constants. */ public final class PrivateConst { // Single-conf app? public static String apiKey = ""; private Const() { // Never ever call this constructor throw new AssertionError(); } }