change package name to uiuios
This commit is contained in:
33
src/com/android/uiuios/LauncherFiles.java
Normal file
33
src/com/android/uiuios/LauncherFiles.java
Normal file
@@ -0,0 +1,33 @@
|
||||
package com.android.uiuios;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Central list of files the Launcher writes to the application data directory.
|
||||
*
|
||||
* To add a new Launcher file, create a String constant referring to the filename, and add it to
|
||||
* ALL_FILES, as shown below.
|
||||
*/
|
||||
public class LauncherFiles {
|
||||
|
||||
private static final String XML = ".xml";
|
||||
|
||||
public static final String LAUNCHER_DB = "launcher.db";
|
||||
public static final String SHARED_PREFERENCES_KEY = "com.android.uiuios.prefs";
|
||||
public static final String MANAGED_USER_PREFERENCES_KEY = "com.android.uiuios.managedusers.prefs";
|
||||
// This preference file is not backed up to cloud.
|
||||
public static final String DEVICE_PREFERENCES_KEY = "com.android.uiuios.device.prefs";
|
||||
|
||||
public static final String WIDGET_PREVIEWS_DB = "widgetpreviews.db";
|
||||
public static final String APP_ICONS_DB = "app_icons.db";
|
||||
|
||||
public static final List<String> ALL_FILES = Collections.unmodifiableList(Arrays.asList(
|
||||
LAUNCHER_DB,
|
||||
SHARED_PREFERENCES_KEY + XML,
|
||||
WIDGET_PREVIEWS_DB,
|
||||
MANAGED_USER_PREFERENCES_KEY + XML,
|
||||
DEVICE_PREFERENCES_KEY + XML,
|
||||
APP_ICONS_DB));
|
||||
}
|
||||
Reference in New Issue
Block a user