package org.microg.gms; public class Constants { /** * This is the highest version that was looked at during development. * Does not necessarily mean anything. */ public static final int MAX_REFERENCE_VERSION = 6599436; public static final String ACTION_GMS_LOCATION_MANAGER_SERVICE_START = "com.google.android.location.internal.GoogleLocationManagerService.START"; public static final String KEY_MOCK_LOCATION = "mockLocation"; public static final String DEFAULT_ACCOUNT = "<>"; /** * No base map tiles. */ public static final int MAP_TYPE_NONE = 0; /** * Basic maps. */ public static final int MAP_TYPE_NORMAL = 1; /** * Satellite maps with no labels. */ public static final int MAP_TYPE_SATELLITE = 2; /** * Terrain maps. */ public static final int MAP_TYPE_TERRAIN = 3; /** * Satellite maps with a transparent layer of major streets. */ public static final int MAP_TYPE_HYBRID = 4; }