move cache directories to sdcard/data

This commit is contained in:
Andrew Dolgov 2012-01-19 09:22:10 +03:00
parent 7e08d4132f
commit 8624583764
3 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ public class FeedsFragment extends Fragment implements OnItemClickListener, OnSh
private FeedList m_feeds = new FeedList();
private OnlineServices m_onlineServices;
private int m_selectedFeedId;
private static final String ICON_PATH = "/org.fox.ttrss/icons/";
private static final String ICON_PATH = "/data/org.fox.ttrss/icons/";
private boolean m_enableFeedIcons;
private boolean m_feedIconsChecked = false;

View File

@ -26,7 +26,7 @@ public class ImageCacheService extends IntentService {
public static final int NOTIFY_DOWNLOADING = 1;
private static final String CACHE_PATH = "/org.fox.ttrss/image-cache/";
private static final String CACHE_PATH = "/data/org.fox.ttrss/image-cache/";
private int m_imagesDownloaded = 0;

View File

@ -32,7 +32,7 @@ public class OfflineFeedsFragment extends Fragment implements OnItemClickListene
private final String TAG = this.getClass().getSimpleName();
private SharedPreferences m_prefs;
private FeedListAdapter m_adapter;
private static final String ICON_PATH = "/org.fox.ttrss/icons/";
private static final String ICON_PATH = "/data/org.fox.ttrss/icons/";
private int m_selectedFeedId;
private boolean m_enableFeedIcons;
private Cursor m_cursor;