Home | History | Annotate | Download | only in wallpaperpicker
      1 package com.android.wallpaperpicker;
      2 
      3 /**
      4  * Central list of files the WallpaperPicker writes to the application data directory.
      5  */
      6 public class WallpaperFiles {
      7 
      8   public static final String DEFAULT_WALLPAPER_THUMBNAIL = "default_thumb2.jpg";
      9   public static final String DEFAULT_WALLPAPER_THUMBNAIL_OLD = "default_thumb.jpg";
     10   public static final String WALLPAPER_CROP_PREFERENCES_KEY =
     11           "com.android.launcher3.WallpaperCropActivity";
     12 
     13   public static final String WALLPAPER_IMAGES_DB = "saved_wallpaper_images.db";
     14 
     15 }
     16