Back to project page apps-android-commons.
The source code is released under:
Apache License
If you think the Android project apps-android-commons 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 org.wikimedia.commons; //from w w w . java2 s . co m public class Prefs { public static String GLOBAL_PREFS = "org.wikimedia.commons.preferences"; public static String TRACKING_ENABLED = "eventLogging"; public static final String DEFAULT_LICENSE = "defaultLicense"; public static class Licenses { public static final String CC_BY_SA = "CC BY-SA"; public static final String CC_BY = "CC BY"; public static final String CC0 = "CC0"; } }