mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 21:33:53 +01:00
15 lines
457 B
Java
15 lines
457 B
Java
package fr.free.nrw.commons;
|
|
|
|
public class Prefs {
|
|
public static String GLOBAL_PREFS = "fr.free.nrw.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";
|
|
}
|
|
}
|