mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-14 16:18:20 +00:00
When the managed profile is created, a "Work" folder is created and added to the homescreen. All work profile apps are added to this folder and icons for subsequent installs (withing a fixed time frame) are automatically added to this folder. If this folder get deleted or the time-frame expires, icon for any new install is placed on the homescreen. Bug: 17410319 Change-Id: I49f4e437707d5eabe4eec85320765bf6ba7fde97
47 lines
1.9 KiB
Java
47 lines
1.9 KiB
Java
package com.android.launcher3;
|
|
|
|
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 DEFAULT_WALLPAPER_THUMBNAIL = "default_thumb2.jpg";
|
|
public static final String DEFAULT_WALLPAPER_THUMBNAIL_OLD = "default_thumb.jpg";
|
|
public static final String LAUNCHER_DB = "launcher.db";
|
|
public static final String LAUNCHER_PREFERENCES = "launcher.preferences";
|
|
public static final String SHARED_PREFERENCES_KEY = "com.android.launcher3.prefs";
|
|
public static final String WALLPAPER_CROP_PREFERENCES_KEY =
|
|
"com.android.launcher3.WallpaperCropActivity";
|
|
public static final String MANAGED_USER_PREFERENCES_KEY = "com.android.launcher3.managedusers.prefs";
|
|
|
|
public static final String WALLPAPER_IMAGES_DB = "saved_wallpaper_images.db";
|
|
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(
|
|
DEFAULT_WALLPAPER_THUMBNAIL,
|
|
DEFAULT_WALLPAPER_THUMBNAIL_OLD,
|
|
LAUNCHER_DB,
|
|
LAUNCHER_PREFERENCES,
|
|
SHARED_PREFERENCES_KEY + XML,
|
|
WALLPAPER_CROP_PREFERENCES_KEY + XML,
|
|
WALLPAPER_IMAGES_DB,
|
|
WIDGET_PREVIEWS_DB,
|
|
MANAGED_USER_PREFERENCES_KEY,
|
|
APP_ICONS_DB));
|
|
|
|
// TODO: Delete these files on upgrade
|
|
public static final List<String> OBSOLETE_FILES = Collections.unmodifiableList(Arrays.asList(
|
|
"launches.log",
|
|
"stats.log"));
|
|
}
|