├── Android.mk
├── AndroidManifest.xml
├── CleanSpec.mk
├── MODULE_LICENSE_APACHE2
├── NOTICE
├── fill_screens.py
├── print_db.py
├── proguard.flags
├── res
├── anim
│ ├── fade_in_fast.xml
│ └── fade_out_fast.xml
├── drawable-hdpi
│ ├── apps_customize_bg.png
│ ├── bg_appwidget_error.9.png
│ ├── bg_cling1.png
│ ├── bg_cling2.png
│ ├── bg_cling3.png
│ ├── bg_cling4.png
│ ├── btn_cling_normal.9.png
│ ├── btn_cling_pressed.9.png
│ ├── cling.png
│ ├── divider_launcher_holo.9.png
│ ├── flying_icon_bg_pressed.9.png
│ ├── focused_bg.9.png
│ ├── grid_focused.9.png
│ ├── grid_pressed.9.png
│ ├── grid_selected.9.png
│ ├── hand.png
│ ├── home_press.9.png
│ ├── homescreen_blue_normal_holo.9.png
│ ├── homescreen_blue_strong_holo.9.png
│ ├── hotseat_scrubber_holo.9.png
│ ├── hotseat_track_holo.9.png
│ ├── ic_allapps.png
│ ├── ic_allapps_pressed.png
│ ├── ic_home_all_apps_holo_dark.png
│ ├── ic_home_search_normal_holo.png
│ ├── ic_home_voice_search_holo.png
│ ├── ic_launcher_clear_active_holo.png
│ ├── ic_launcher_clear_normal_holo.png
│ ├── ic_launcher_info_active_holo.png
│ ├── ic_launcher_info_normal_holo.png
│ ├── ic_launcher_market_holo.png
│ ├── ic_launcher_trashcan_active_holo.png
│ ├── ic_launcher_trashcan_normal_holo.png
│ ├── overscroll_glow_left.9.png
│ ├── overscroll_glow_right.9.png
│ ├── page_hover_left_holo.9.png
│ ├── page_hover_right_holo.9.png
│ ├── paged_view_indicator.9.png
│ ├── portal_container_holo.9.png
│ ├── portal_ring_inner_holo.png
│ ├── portal_ring_inner_nolip_holo.png
│ ├── portal_ring_outer_holo.png
│ ├── portal_ring_rest.png
│ ├── search_frame.9.png
│ ├── tab_selected_focused_holo.9.png
│ ├── tab_selected_holo.9.png
│ ├── tab_selected_pressed_focused_holo.9.png
│ ├── tab_selected_pressed_holo.9.png
│ ├── tab_unselected_focused_holo.9.png
│ ├── tab_unselected_holo.9.png
│ ├── tab_unselected_pressed_focused_holo.9.png
│ ├── tab_unselected_pressed_holo.9.png
│ ├── widget_container_holo.9.png
│ ├── widget_preview_tile.png
│ ├── widget_resize_frame_holo.9.png
│ ├── widget_resize_handle_bottom.png
│ ├── widget_resize_handle_left.png
│ ├── widget_resize_handle_right.png
│ ├── widget_resize_handle_top.png
│ └── workspace_bg.9.png
├── drawable-land-hdpi
│ ├── bg_cling1.png
│ ├── bg_cling2.png
│ ├── bg_cling3.png
│ ├── divider_launcher_holo.9.png
│ ├── hotseat_track_holo.9.png
│ ├── ic_home_voice_search_holo.png
│ └── workspace_bg.9.png
├── drawable-land-mdpi
│ ├── bg_cling1.png
│ ├── bg_cling2.png
│ ├── bg_cling3.png
│ ├── divider_launcher_holo.9.png
│ ├── hotseat_track_holo.9.png
│ ├── ic_home_voice_search_holo.png
│ └── workspace_bg.9.png
├── drawable-land-xhdpi
│ ├── bg_cling1.png
│ ├── bg_cling2.png
│ ├── bg_cling3.png
│ ├── divider_launcher_holo.9.png
│ ├── hotseat_track_holo.9.png
│ ├── ic_home_voice_search_holo.png
│ └── workspace_bg.9.png
├── drawable-mdpi
│ ├── apps_customize_bg.png
│ ├── bg_appwidget_error.9.png
│ ├── bg_cling1.png
│ ├── bg_cling2.png
│ ├── bg_cling3.png
│ ├── bg_cling4.png
│ ├── bg_cling5.png
│ ├── btn_cling_normal.9.png
│ ├── btn_cling_pressed.9.png
│ ├── cling.png
│ ├── divider_launcher_holo.9.png
│ ├── flying_icon_bg_pressed.9.png
│ ├── focused_bg.9.png
│ ├── grid_focused.9.png
│ ├── grid_pressed.9.png
│ ├── grid_selected.9.png
│ ├── hand.png
│ ├── home_press.9.png
│ ├── homescreen_blue_normal_holo.9.png
│ ├── homescreen_blue_strong_holo.9.png
│ ├── hotseat_scrubber_holo.9.png
│ ├── hotseat_track_holo.9.png
│ ├── ic_allapps.png
│ ├── ic_allapps_pressed.png
│ ├── ic_home_all_apps_holo_dark.png
│ ├── ic_home_search_normal_holo.png
│ ├── ic_home_voice_search_holo.png
│ ├── ic_launcher_clear_active_holo.png
│ ├── ic_launcher_clear_normal_holo.png
│ ├── ic_launcher_info_active_holo.png
│ ├── ic_launcher_info_normal_holo.png
│ ├── ic_launcher_market_holo.png
│ ├── ic_launcher_trashcan_active_holo.png
│ ├── ic_launcher_trashcan_normal_holo.png
│ ├── overscroll_glow_left.9.png
│ ├── overscroll_glow_right.9.png
│ ├── page_hover_left_holo.9.png
│ ├── page_hover_right_holo.9.png
│ ├── paged_view_indicator.9.png
│ ├── portal_container_holo.9.png
│ ├── portal_ring_inner_holo.png
│ ├── portal_ring_inner_nolip_holo.png
│ ├── portal_ring_outer_holo.png
│ ├── portal_ring_rest.png
│ ├── search_frame.9.png
│ ├── tab_selected_focused_holo.9.png
│ ├── tab_selected_holo.9.png
│ ├── tab_selected_pressed_focused_holo.9.png
│ ├── tab_selected_pressed_holo.9.png
│ ├── tab_unselected_focused_holo.9.png
│ ├── tab_unselected_holo.9.png
│ ├── tab_unselected_pressed_focused_holo.9.png
│ ├── tab_unselected_pressed_holo.9.png
│ ├── widget_container_holo.9.png
│ ├── widget_preview_tile.png
│ ├── widget_resize_frame_holo.9.png
│ ├── widget_resize_handle_bottom.png
│ ├── widget_resize_handle_left.png
│ ├── widget_resize_handle_right.png
│ ├── widget_resize_handle_top.png
│ └── workspace_bg.9.png
├── drawable-nodpi
│ ├── wallpaper_01.jpg
│ ├── wallpaper_01_small.jpg
│ ├── wallpaper_02.jpg
│ ├── wallpaper_02_small.jpg
│ ├── wallpaper_03.jpg
│ ├── wallpaper_03_small.jpg
│ ├── wallpaper_04.jpg
│ ├── wallpaper_04_small.jpg
│ ├── wallpaper_05.jpg
│ ├── wallpaper_05_small.jpg
│ ├── wallpaper_08.jpg
│ ├── wallpaper_08_small.jpg
│ ├── wallpaper_09.jpg
│ ├── wallpaper_09_small.jpg
│ ├── wallpaper_10.jpg
│ ├── wallpaper_10_small.jpg
│ ├── wallpaper_11.jpg
│ ├── wallpaper_11_small.jpg
│ ├── wallpaper_12.jpg
│ └── wallpaper_12_small.jpg
├── drawable-sw600dp-hdpi
│ ├── divider_launcher_holo.9.png
│ ├── homescreen_blue_normal_holo.9.png
│ ├── homescreen_blue_strong_holo.9.png
│ ├── ic_allapps.png
│ ├── ic_allapps_pressed.png
│ ├── overscroll_glow_left.9.png
│ ├── overscroll_glow_right.9.png
│ ├── portal_ring_inner_holo.png
│ ├── portal_ring_inner_nolip_holo.png
│ └── portal_ring_outer_holo.png
├── drawable-sw600dp-land-hdpi
│ └── divider_launcher_holo.9.png
├── drawable-sw600dp-land-mdpi
│ └── divider_launcher_holo.9.png
├── drawable-sw600dp-mdpi
│ ├── divider_launcher_holo.9.png
│ ├── homescreen_blue_normal_holo.9.png
│ ├── homescreen_blue_strong_holo.9.png
│ ├── ic_allapps.png
│ ├── ic_allapps_pressed.png
│ ├── overscroll_glow_left.9.png
│ ├── overscroll_glow_right.9.png
│ ├── portal_ring_inner_holo.png
│ ├── portal_ring_inner_nolip_holo.png
│ └── portal_ring_outer_holo.png
├── drawable-sw600dp-nodpi
│ ├── wallpaper_01.jpg
│ ├── wallpaper_02.jpg
│ ├── wallpaper_03.jpg
│ ├── wallpaper_04.jpg
│ ├── wallpaper_05.jpg
│ ├── wallpaper_08.jpg
│ ├── wallpaper_09.jpg
│ ├── wallpaper_10.jpg
│ ├── wallpaper_11.jpg
│ └── wallpaper_12.jpg
├── drawable-sw600dp-xhdpi
│ ├── homescreen_blue_normal_holo.9.png
│ ├── homescreen_blue_strong_holo.9.png
│ ├── ic_allapps.png
│ ├── ic_allapps_pressed.png
│ ├── overscroll_glow_left.9.png
│ ├── overscroll_glow_right.9.png
│ ├── portal_ring_inner_holo.png
│ ├── portal_ring_inner_nolip_holo.png
│ └── portal_ring_outer_holo.png
├── drawable-sw720dp-hdpi
│ └── workspace_bg.9.png
├── drawable-sw720dp-land-hdpi
│ └── divider_launcher_holo.9.png
├── drawable-sw720dp-land-mdpi
│ └── divider_launcher_holo.9.png
├── drawable-sw720dp-mdpi
│ └── workspace_bg.9.png
├── drawable-sw720dp-nodpi
│ ├── wallpaper_00.jpg
│ ├── wallpaper_00_small.jpg
│ ├── wallpaper_01.jpg
│ ├── wallpaper_01_small.jpg
│ ├── wallpaper_02.jpg
│ ├── wallpaper_02_small.jpg
│ ├── wallpaper_03.jpg
│ ├── wallpaper_03_small.jpg
│ ├── wallpaper_04.jpg
│ ├── wallpaper_04_small.jpg
│ ├── wallpaper_05.jpg
│ ├── wallpaper_05_small.jpg
│ ├── wallpaper_06.jpg
│ ├── wallpaper_06_small.jpg
│ ├── wallpaper_07.jpg
│ ├── wallpaper_07_small.jpg
│ ├── wallpaper_08.jpg
│ ├── wallpaper_08_small.jpg
│ ├── wallpaper_09.jpg
│ ├── wallpaper_09_small.jpg
│ ├── wallpaper_10.jpg
│ └── wallpaper_10_small.jpg
├── drawable-sw720dp-xhdpi
│ └── workspace_bg.9.png
├── drawable-xhdpi
│ ├── apps_customize_bg.png
│ ├── bg_appwidget_error.9.png
│ ├── bg_cling1.png
│ ├── bg_cling2.png
│ ├── bg_cling3.png
│ ├── bg_cling4.png
│ ├── btn_cling_normal.9.png
│ ├── btn_cling_pressed.9.png
│ ├── cling.png
│ ├── divider_launcher_holo.9.png
│ ├── flying_icon_bg_pressed.9.png
│ ├── focused_bg.9.png
│ ├── grid_focused.9.png
│ ├── grid_pressed.9.png
│ ├── grid_selected.9.png
│ ├── hand.png
│ ├── home_press.9.png
│ ├── homescreen_blue_normal_holo.9.png
│ ├── homescreen_blue_strong_holo.9.png
│ ├── hotseat_scrubber_holo.9.png
│ ├── hotseat_track_holo.9.png
│ ├── ic_allapps.png
│ ├── ic_allapps_pressed.png
│ ├── ic_home_all_apps_holo_dark.png
│ ├── ic_home_search_normal_holo.png
│ ├── ic_home_voice_search_holo.png
│ ├── ic_launcher_clear_active_holo.png
│ ├── ic_launcher_clear_normal_holo.png
│ ├── ic_launcher_info_active_holo.png
│ ├── ic_launcher_info_normal_holo.png
│ ├── ic_launcher_market_holo.png
│ ├── ic_launcher_trashcan_active_holo.png
│ ├── ic_launcher_trashcan_normal_holo.png
│ ├── overscroll_glow_left.9.png
│ ├── overscroll_glow_right.9.png
│ ├── page_hover_left_holo.9.png
│ ├── page_hover_right_holo.9.png
│ ├── paged_view_indicator.9.png
│ ├── portal_container_holo.9.png
│ ├── portal_ring_inner_holo.png
│ ├── portal_ring_inner_nolip_holo.png
│ ├── portal_ring_outer_holo.png
│ ├── portal_ring_rest.png
│ ├── search_frame.9.png
│ ├── tab_selected_focused_holo.9.png
│ ├── tab_selected_holo.9.png
│ ├── tab_selected_pressed_focused_holo.9.png
│ ├── tab_selected_pressed_holo.9.png
│ ├── tab_unselected_focused_holo.9.png
│ ├── tab_unselected_holo.9.png
│ ├── tab_unselected_pressed_focused_holo.9.png
│ ├── tab_unselected_pressed_holo.9.png
│ ├── wallpaper_01.jpg
│ ├── wallpaper_02.jpg
│ ├── wallpaper_03.jpg
│ ├── wallpaper_04.jpg
│ ├── wallpaper_05.jpg
│ ├── wallpaper_08.jpg
│ ├── wallpaper_09.jpg
│ ├── wallpaper_10.jpg
│ ├── wallpaper_11.jpg
│ ├── wallpaper_12.jpg
│ ├── wallpaper_picker_preview.png
│ ├── widget_container_holo.9.png
│ ├── widget_preview_tile.png
│ ├── widget_resize_frame_holo.9.png
│ ├── widget_resize_handle_bottom.png
│ ├── widget_resize_handle_left.png
│ ├── widget_resize_handle_right.png
│ ├── widget_resize_handle_top.png
│ └── workspace_bg.9.png
├── drawable
│ ├── all_apps_button_icon.xml
│ ├── cling_button_bg.xml
│ ├── flying_icon_bg.xml
│ ├── focusable_view_bg.xml
│ ├── info_target_selector.xml
│ ├── remove_target_selector.xml
│ ├── tab_widget_indicator_selector.xml
│ ├── uninstall_target_selector.xml
│ ├── wallpaper_gallery_background.xml
│ └── wallpaper_gallery_item.xml
├── layout-land
│ ├── all_apps_cling.xml
│ ├── application.xml
│ ├── apps_customize_application.xml
│ ├── folder_cling.xml
│ ├── folder_icon.xml
│ ├── hotseat.xml
│ ├── launcher.xml
│ ├── search_bar.xml
│ └── workspace_cling.xml
├── layout-port
│ ├── all_apps_cling.xml
│ ├── application.xml
│ ├── apps_customize_application.xml
│ ├── folder_cling.xml
│ ├── folder_icon.xml
│ ├── hotseat.xml
│ ├── launcher.xml
│ ├── search_bar.xml
│ └── workspace_cling.xml
├── layout-sw600dp-port
│ ├── all_apps_cling.xml
│ └── folder_cling.xml
├── layout-sw720dp-port
│ └── folder_cling.xml
├── layout-sw720dp
│ ├── all_apps_cling.xml
│ ├── external_widget_drop_list_item.xml
│ ├── folder_cling.xml
│ ├── hotseat.xml
│ ├── launcher.xml
│ ├── market_button.xml
│ ├── search_bar.xml
│ ├── wallpaper_item.xml
│ ├── workspace.xml
│ └── workspace_cling.xml
├── layout
│ ├── add_list_item.xml
│ ├── apps_customize_pane.xml
│ ├── apps_customize_progressbar.xml
│ ├── apps_customize_widget.xml
│ ├── appwidget_error.xml
│ ├── custom_workspace_cling.xml
│ ├── drop_target_bar.xml
│ ├── market_button.xml
│ ├── qsb_bar.xml
│ ├── rename_folder.xml
│ ├── scroll_indicator.xml
│ ├── tab_widget_indicator.xml
│ ├── user_folder.xml
│ ├── wallpaper_chooser.xml
│ ├── wallpaper_chooser_base.xml
│ ├── wallpaper_item.xml
│ ├── workspace_divider.xml
│ └── workspace_screen.xml
├── mipmap-hdpi
│ ├── ic_launcher_application.png
│ ├── ic_launcher_home.png
│ └── ic_launcher_wallpaper.png
├── mipmap-mdpi
│ ├── ic_launcher_application.png
│ ├── ic_launcher_home.png
│ └── ic_launcher_wallpaper.png
├── mipmap-xhdpi
│ ├── ic_launcher_application.png
│ ├── ic_launcher_home.png
│ └── ic_launcher_wallpaper.png
├── mipmap-xxhdpi
│ ├── ic_launcher_application.png
│ └── ic_launcher_wallpaper.png
├── values-af-land
│ └── strings.xml
├── values-af
│ └── strings.xml
├── values-am-land
│ └── strings.xml
├── values-am
│ └── strings.xml
├── values-ar-land
│ └── strings.xml
├── values-ar
│ └── strings.xml
├── values-be
│ └── strings.xml
├── values-bg-land
│ └── strings.xml
├── values-bg
│ └── strings.xml
├── values-ca-land
│ └── strings.xml
├── values-ca
│ └── strings.xml
├── values-cs-land
│ └── strings.xml
├── values-cs
│ └── strings.xml
├── values-da-land
│ └── strings.xml
├── values-da
│ └── strings.xml
├── values-de-land
│ └── strings.xml
├── values-de
│ └── strings.xml
├── values-el-land
│ └── strings.xml
├── values-el
│ └── strings.xml
├── values-en-rGB-land
│ └── strings.xml
├── values-en-rGB
│ └── strings.xml
├── values-es-land
│ └── strings.xml
├── values-es-rUS-land
│ └── strings.xml
├── values-es-rUS
│ └── strings.xml
├── values-es
│ └── strings.xml
├── values-et
│ └── strings.xml
├── values-fa-land
│ └── strings.xml
├── values-fa
│ └── strings.xml
├── values-fi-land
│ └── strings.xml
├── values-fi
│ └── strings.xml
├── values-fr-land
│ └── strings.xml
├── values-fr
│ └── strings.xml
├── values-hi
│ └── strings.xml
├── values-hr-land
│ └── strings.xml
├── values-hr
│ └── strings.xml
├── values-hu-land
│ └── strings.xml
├── values-hu
│ └── strings.xml
├── values-in-land
│ └── strings.xml
├── values-in
│ └── strings.xml
├── values-it-land
│ └── strings.xml
├── values-it
│ └── strings.xml
├── values-iw-land
│ └── strings.xml
├── values-iw
│ └── strings.xml
├── values-ja-land
│ └── strings.xml
├── values-ja
│ └── strings.xml
├── values-ko-land
│ └── strings.xml
├── values-ko
│ └── strings.xml
├── values-land
│ ├── config.xml
│ ├── dimens.xml
│ ├── strings.xml
│ └── styles.xml
├── values-lt-land
│ └── strings.xml
├── values-lt
│ └── strings.xml
├── values-lv-land
│ └── strings.xml
├── values-lv
│ └── strings.xml
├── values-ms-land
│ └── strings.xml
├── values-ms
│ └── strings.xml
├── values-nb-land
│ └── strings.xml
├── values-nb
│ └── strings.xml
├── values-nl-land
│ └── strings.xml
├── values-nl
│ └── strings.xml
├── values-pl-land
│ └── strings.xml
├── values-pl
│ └── strings.xml
├── values-port
│ ├── dimens.xml
│ └── styles.xml
├── values-pt-land
│ └── strings.xml
├── values-pt-rPT-land
│ └── strings.xml
├── values-pt-rPT
│ └── strings.xml
├── values-pt
│ └── strings.xml
├── values-rm-land
│ └── strings.xml
├── values-rm
│ └── strings.xml
├── values-ro-land
│ └── strings.xml
├── values-ro
│ └── strings.xml
├── values-ru-land
│ └── strings.xml
├── values-ru
│ └── strings.xml
├── values-sk-land
│ └── strings.xml
├── values-sk
│ └── strings.xml
├── values-sl-land
│ └── strings.xml
├── values-sl
│ └── strings.xml
├── values-sr-land
│ └── strings.xml
├── values-sr
│ └── strings.xml
├── values-sv-land
│ └── strings.xml
├── values-sv
│ └── strings.xml
├── values-sw-land
│ └── strings.xml
├── values-sw
│ └── strings.xml
├── values-sw340dp-land
│ ├── dimens.xml
│ └── styles.xml
├── values-sw340dp-port
│ ├── config.xml
│ ├── dimens.xml
│ └── styles.xml
├── values-sw340dp
│ └── dimens.xml
├── values-sw380dp-port
│ └── dimens.xml
├── values-sw600dp-land
│ ├── config.xml
│ └── dimens.xml
├── values-sw600dp-port
│ └── dimens.xml
├── values-sw600dp
│ ├── config.xml
│ ├── dimens.xml
│ └── styles.xml
├── values-sw720dp-land
│ └── dimens.xml
├── values-sw720dp-port
│ ├── dimens.xml
│ └── styles.xml
├── values-sw720dp
│ ├── config.xml
│ ├── dimens.xml
│ ├── styles.xml
│ └── wallpapers.xml
├── values-th-land
│ └── strings.xml
├── values-th
│ └── strings.xml
├── values-tl-land
│ └── strings.xml
├── values-tl
│ └── strings.xml
├── values-tr-land
│ └── strings.xml
├── values-tr
│ └── strings.xml
├── values-uk-land
│ └── strings.xml
├── values-uk
│ └── strings.xml
├── values-vi-land
│ └── strings.xml
├── values-vi
│ └── strings.xml
├── values-zh-rCN-land
│ └── strings.xml
├── values-zh-rCN
│ └── strings.xml
├── values-zh-rTW-land
│ └── strings.xml
├── values-zh-rTW
│ └── strings.xml
├── values-zu-land
│ └── strings.xml
├── values-zu
│ └── strings.xml
├── values
│ ├── attrs.xml
│ ├── colors.xml
│ ├── config.xml
│ ├── dimens.xml
│ ├── extra_wallpapers.xml
│ ├── strings.xml
│ ├── styles.xml
│ └── wallpapers.xml
├── xml-sw600dp
│ └── default_workspace.xml
├── xml-sw720dp
│ └── default_workspace.xml
└── xml
│ ├── default_workspace.xml
│ ├── update_workspace.xml
│ └── wallpaper_picker_preview.xml
├── src
└── com
│ └── android
│ └── launcher2
│ ├── AccessibleTabView.java
│ ├── AddAdapter.java
│ ├── Alarm.java
│ ├── AllAppsList.java
│ ├── AppWidgetResizeFrame.java
│ ├── ApplicationInfo.java
│ ├── AppsCustomizePagedView.java
│ ├── AppsCustomizeTabHost.java
│ ├── BubbleTextView.java
│ ├── ButtonDropTarget.java
│ ├── CellLayout.java
│ ├── CheckLongPressHelper.java
│ ├── Cling.java
│ ├── DeferredHandler.java
│ ├── DeleteDropTarget.java
│ ├── DragController.java
│ ├── DragLayer.java
│ ├── DragScroller.java
│ ├── DragSource.java
│ ├── DragView.java
│ ├── DrawableStateProxyView.java
│ ├── DropTarget.java
│ ├── FastBitmapDrawable.java
│ ├── FocusHelper.java
│ ├── FocusOnlyTabWidget.java
│ ├── Folder.java
│ ├── FolderEditText.java
│ ├── FolderIcon.java
│ ├── FolderInfo.java
│ ├── HandleView.java
│ ├── HideFromAccessibilityHelper.java
│ ├── HolographicImageView.java
│ ├── HolographicLinearLayout.java
│ ├── HolographicOutlineHelper.java
│ ├── HolographicViewHelper.java
│ ├── Hotseat.java
│ ├── IconCache.java
│ ├── InfoDropTarget.java
│ ├── InstallShortcutReceiver.java
│ ├── InstallWidgetReceiver.java
│ ├── InterruptibleInOutAnimator.java
│ ├── ItemInfo.java
│ ├── Launcher.java
│ ├── LauncherAnimUtils.java
│ ├── LauncherAnimatorUpdateListener.java
│ ├── LauncherAppWidgetHost.java
│ ├── LauncherAppWidgetHostView.java
│ ├── LauncherAppWidgetInfo.java
│ ├── LauncherApplication.java
│ ├── LauncherModel.java
│ ├── LauncherProvider.java
│ ├── LauncherSettings.java
│ ├── LauncherViewPropertyAnimator.java
│ ├── PagedView.java
│ ├── PagedViewCellLayout.java
│ ├── PagedViewCellLayoutChildren.java
│ ├── PagedViewGridLayout.java
│ ├── PagedViewIcon.java
│ ├── PagedViewIconCache.java
│ ├── PagedViewWidget.java
│ ├── PagedViewWidgetImageView.java
│ ├── PagedViewWithDraggableItems.java
│ ├── PendingAddItemInfo.java
│ ├── PreloadReceiver.java
│ ├── SearchDropTargetBar.java
│ ├── ShortcutAndWidgetContainer.java
│ ├── ShortcutInfo.java
│ ├── SmoothPagedView.java
│ ├── SpringLoadedDragController.java
│ ├── StrokedTextView.java
│ ├── SymmetricalLinearTween.java
│ ├── TweenCallback.java
│ ├── UninstallShortcutReceiver.java
│ ├── UserInitializeReceiver.java
│ ├── Utilities.java
│ ├── WallpaperChooser.java
│ ├── WallpaperChooserDialogFragment.java
│ └── Workspace.java
└── tests
├── Android.mk
└── stress
├── Android.mk
├── AndroidManifest.xml
└── src
└── com
└── android
└── launcher2
└── stress
└── LauncherRotationStressTest.java
/Android.mk:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright (C) 2008 The Android Open Source Project
3 | #
4 | # Licensed under the Apache License, Version 2.0 (the "License");
5 | # you may not use this file except in compliance with the License.
6 | # You may obtain a copy of the License at
7 | #
8 | # http://www.apache.org/licenses/LICENSE-2.0
9 | #
10 | # Unless required by applicable law or agreed to in writing, software
11 | # distributed under the License is distributed on an "AS IS" BASIS,
12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | # See the License for the specific language governing permissions and
14 | # limitations under the License.
15 | #
16 |
17 | LOCAL_PATH := $(call my-dir)
18 | include $(CLEAR_VARS)
19 |
20 | LOCAL_MODULE_TAGS := optional
21 |
22 | LOCAL_STATIC_JAVA_LIBRARIES := android-common android-support-v13
23 |
24 | LOCAL_SRC_FILES := $(call all-java-files-under, src) $(call all-renderscript-files-under, src)
25 | LOCAL_SDK_VERSION := current
26 |
27 | LOCAL_PACKAGE_NAME := Launcher2
28 | LOCAL_CERTIFICATE := shared
29 |
30 | LOCAL_OVERRIDES_PACKAGES := Home
31 |
32 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags
33 |
34 | include $(BUILD_PACKAGE)
35 |
36 | include $(call all-makefiles-under,$(LOCAL_PATH))
37 |
--------------------------------------------------------------------------------
/MODULE_LICENSE_APACHE2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/MODULE_LICENSE_APACHE2
--------------------------------------------------------------------------------
/res/anim/fade_in_fast.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
24 |
--------------------------------------------------------------------------------
/res/anim/fade_out_fast.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
24 |
--------------------------------------------------------------------------------
/res/drawable-hdpi/apps_customize_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/apps_customize_bg.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/bg_appwidget_error.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/bg_appwidget_error.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/bg_cling1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/bg_cling1.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/bg_cling2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/bg_cling2.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/bg_cling3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/bg_cling3.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/bg_cling4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/bg_cling4.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/btn_cling_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/btn_cling_normal.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/btn_cling_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/btn_cling_pressed.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/cling.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/cling.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/flying_icon_bg_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/flying_icon_bg_pressed.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/focused_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/focused_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/grid_focused.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/grid_focused.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/grid_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/grid_pressed.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/grid_selected.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/grid_selected.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/hand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/hand.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/home_press.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/home_press.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/homescreen_blue_normal_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/homescreen_blue_normal_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/homescreen_blue_strong_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/homescreen_blue_strong_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/hotseat_scrubber_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/hotseat_scrubber_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/hotseat_track_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/hotseat_track_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_allapps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_allapps.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_allapps_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_allapps_pressed.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_home_all_apps_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_home_all_apps_holo_dark.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_home_search_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_home_search_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_home_voice_search_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_home_voice_search_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_launcher_clear_active_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_launcher_clear_active_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_launcher_clear_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_launcher_clear_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_launcher_info_active_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_launcher_info_active_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_launcher_info_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_launcher_info_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_launcher_market_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_launcher_market_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_launcher_trashcan_active_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_launcher_trashcan_active_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_launcher_trashcan_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/ic_launcher_trashcan_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/overscroll_glow_left.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/overscroll_glow_left.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/overscroll_glow_right.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/overscroll_glow_right.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/page_hover_left_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/page_hover_left_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/page_hover_right_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/page_hover_right_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/paged_view_indicator.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/paged_view_indicator.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/portal_container_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/portal_container_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/portal_ring_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/portal_ring_inner_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/portal_ring_inner_nolip_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/portal_ring_inner_nolip_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/portal_ring_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/portal_ring_outer_holo.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/portal_ring_rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/portal_ring_rest.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/search_frame.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/search_frame.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/tab_selected_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/tab_selected_pressed_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/tab_selected_pressed_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/tab_unselected_pressed_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/tab_unselected_pressed_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/widget_container_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/widget_container_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/widget_preview_tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/widget_preview_tile.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/widget_resize_frame_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/widget_resize_frame_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/widget_resize_handle_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/widget_resize_handle_bottom.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/widget_resize_handle_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/widget_resize_handle_left.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/widget_resize_handle_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/widget_resize_handle_right.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/widget_resize_handle_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/widget_resize_handle_top.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/workspace_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-hdpi/workspace_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-land-hdpi/bg_cling1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-hdpi/bg_cling1.png
--------------------------------------------------------------------------------
/res/drawable-land-hdpi/bg_cling2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-hdpi/bg_cling2.png
--------------------------------------------------------------------------------
/res/drawable-land-hdpi/bg_cling3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-hdpi/bg_cling3.png
--------------------------------------------------------------------------------
/res/drawable-land-hdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-hdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-land-hdpi/hotseat_track_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-hdpi/hotseat_track_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-land-hdpi/ic_home_voice_search_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-hdpi/ic_home_voice_search_holo.png
--------------------------------------------------------------------------------
/res/drawable-land-hdpi/workspace_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-hdpi/workspace_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-land-mdpi/bg_cling1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-mdpi/bg_cling1.png
--------------------------------------------------------------------------------
/res/drawable-land-mdpi/bg_cling2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-mdpi/bg_cling2.png
--------------------------------------------------------------------------------
/res/drawable-land-mdpi/bg_cling3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-mdpi/bg_cling3.png
--------------------------------------------------------------------------------
/res/drawable-land-mdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-mdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-land-mdpi/hotseat_track_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-mdpi/hotseat_track_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-land-mdpi/ic_home_voice_search_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-mdpi/ic_home_voice_search_holo.png
--------------------------------------------------------------------------------
/res/drawable-land-mdpi/workspace_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-mdpi/workspace_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-land-xhdpi/bg_cling1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-xhdpi/bg_cling1.png
--------------------------------------------------------------------------------
/res/drawable-land-xhdpi/bg_cling2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-xhdpi/bg_cling2.png
--------------------------------------------------------------------------------
/res/drawable-land-xhdpi/bg_cling3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-xhdpi/bg_cling3.png
--------------------------------------------------------------------------------
/res/drawable-land-xhdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-xhdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-land-xhdpi/hotseat_track_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-xhdpi/hotseat_track_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-land-xhdpi/ic_home_voice_search_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-xhdpi/ic_home_voice_search_holo.png
--------------------------------------------------------------------------------
/res/drawable-land-xhdpi/workspace_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-land-xhdpi/workspace_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/apps_customize_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/apps_customize_bg.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/bg_appwidget_error.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/bg_appwidget_error.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/bg_cling1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/bg_cling1.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/bg_cling2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/bg_cling2.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/bg_cling3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/bg_cling3.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/bg_cling4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/bg_cling4.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/bg_cling5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/bg_cling5.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/btn_cling_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/btn_cling_normal.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/btn_cling_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/btn_cling_pressed.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/cling.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/cling.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/flying_icon_bg_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/flying_icon_bg_pressed.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/focused_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/focused_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/grid_focused.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/grid_focused.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/grid_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/grid_pressed.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/grid_selected.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/grid_selected.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/hand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/hand.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/home_press.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/home_press.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/homescreen_blue_normal_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/homescreen_blue_normal_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/homescreen_blue_strong_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/homescreen_blue_strong_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/hotseat_scrubber_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/hotseat_scrubber_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/hotseat_track_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/hotseat_track_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_allapps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_allapps.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_allapps_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_allapps_pressed.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_home_all_apps_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_home_all_apps_holo_dark.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_home_search_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_home_search_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_home_voice_search_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_home_voice_search_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_launcher_clear_active_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_launcher_clear_active_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_launcher_clear_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_launcher_clear_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_launcher_info_active_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_launcher_info_active_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_launcher_info_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_launcher_info_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_launcher_market_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_launcher_market_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_launcher_trashcan_active_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_launcher_trashcan_active_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_launcher_trashcan_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/ic_launcher_trashcan_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/overscroll_glow_left.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/overscroll_glow_left.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/overscroll_glow_right.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/overscroll_glow_right.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/page_hover_left_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/page_hover_left_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/page_hover_right_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/page_hover_right_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/paged_view_indicator.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/paged_view_indicator.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/portal_container_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/portal_container_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/portal_ring_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/portal_ring_inner_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/portal_ring_inner_nolip_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/portal_ring_inner_nolip_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/portal_ring_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/portal_ring_outer_holo.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/portal_ring_rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/portal_ring_rest.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/search_frame.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/search_frame.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/tab_selected_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/tab_selected_pressed_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/tab_selected_pressed_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/tab_unselected_pressed_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/tab_unselected_pressed_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/widget_container_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/widget_container_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/widget_preview_tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/widget_preview_tile.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/widget_resize_frame_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/widget_resize_frame_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/widget_resize_handle_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/widget_resize_handle_bottom.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/widget_resize_handle_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/widget_resize_handle_left.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/widget_resize_handle_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/widget_resize_handle_right.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/widget_resize_handle_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/widget_resize_handle_top.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/workspace_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-mdpi/workspace_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_01.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_01_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_01_small.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_02.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_02_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_02_small.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_03.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_03_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_03_small.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_04.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_04_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_04_small.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_05.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_05_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_05_small.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_08.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_08.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_08_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_08_small.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_09.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_09.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_09_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_09_small.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_10.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_10_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_10_small.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_11.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_11_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_11_small.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_12.jpg
--------------------------------------------------------------------------------
/res/drawable-nodpi/wallpaper_12_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-nodpi/wallpaper_12_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/homescreen_blue_normal_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/homescreen_blue_normal_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/homescreen_blue_strong_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/homescreen_blue_strong_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/ic_allapps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/ic_allapps.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/ic_allapps_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/ic_allapps_pressed.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/overscroll_glow_left.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/overscroll_glow_left.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/overscroll_glow_right.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/overscroll_glow_right.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/portal_ring_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/portal_ring_inner_holo.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/portal_ring_inner_nolip_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/portal_ring_inner_nolip_holo.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-hdpi/portal_ring_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-hdpi/portal_ring_outer_holo.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-land-hdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-land-hdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-land-mdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-land-mdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/homescreen_blue_normal_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/homescreen_blue_normal_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/homescreen_blue_strong_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/homescreen_blue_strong_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/ic_allapps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/ic_allapps.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/ic_allapps_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/ic_allapps_pressed.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/overscroll_glow_left.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/overscroll_glow_left.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/overscroll_glow_right.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/overscroll_glow_right.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/portal_ring_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/portal_ring_inner_holo.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/portal_ring_inner_nolip_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/portal_ring_inner_nolip_holo.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-mdpi/portal_ring_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-mdpi/portal_ring_outer_holo.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_01.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_02.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_03.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_04.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_05.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_08.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_08.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_09.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_09.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_10.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_11.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-nodpi/wallpaper_12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-nodpi/wallpaper_12.jpg
--------------------------------------------------------------------------------
/res/drawable-sw600dp-xhdpi/homescreen_blue_normal_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-xhdpi/homescreen_blue_normal_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-xhdpi/homescreen_blue_strong_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-xhdpi/homescreen_blue_strong_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-xhdpi/ic_allapps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-xhdpi/ic_allapps.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-xhdpi/ic_allapps_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-xhdpi/ic_allapps_pressed.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-xhdpi/overscroll_glow_left.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-xhdpi/overscroll_glow_left.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-xhdpi/overscroll_glow_right.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-xhdpi/overscroll_glow_right.9.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-xhdpi/portal_ring_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-xhdpi/portal_ring_inner_holo.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-xhdpi/portal_ring_inner_nolip_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-xhdpi/portal_ring_inner_nolip_holo.png
--------------------------------------------------------------------------------
/res/drawable-sw600dp-xhdpi/portal_ring_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw600dp-xhdpi/portal_ring_outer_holo.png
--------------------------------------------------------------------------------
/res/drawable-sw720dp-hdpi/workspace_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-hdpi/workspace_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-sw720dp-land-hdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-land-hdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw720dp-land-mdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-land-mdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-sw720dp-mdpi/workspace_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-mdpi/workspace_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_00.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_00.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_00_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_00_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_01.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_01_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_01_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_02.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_02_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_02_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_03.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_03_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_03_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_04.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_04_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_04_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_05.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_05_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_05_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_06.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_06_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_06_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_07.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_07.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_07_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_07_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_08.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_08.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_08_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_08_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_09.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_09.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_09_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_09_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_10.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-nodpi/wallpaper_10_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-nodpi/wallpaper_10_small.jpg
--------------------------------------------------------------------------------
/res/drawable-sw720dp-xhdpi/workspace_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-sw720dp-xhdpi/workspace_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/apps_customize_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/apps_customize_bg.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/bg_appwidget_error.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/bg_appwidget_error.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/bg_cling1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/bg_cling1.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/bg_cling2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/bg_cling2.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/bg_cling3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/bg_cling3.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/bg_cling4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/bg_cling4.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/btn_cling_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/btn_cling_normal.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/btn_cling_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/btn_cling_pressed.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/cling.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/cling.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/divider_launcher_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/divider_launcher_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/flying_icon_bg_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/flying_icon_bg_pressed.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/focused_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/focused_bg.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/grid_focused.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/grid_focused.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/grid_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/grid_pressed.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/grid_selected.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/grid_selected.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/hand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/hand.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/home_press.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/home_press.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/homescreen_blue_normal_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/homescreen_blue_normal_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/homescreen_blue_strong_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/homescreen_blue_strong_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/hotseat_scrubber_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/hotseat_scrubber_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/hotseat_track_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/hotseat_track_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_allapps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_allapps.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_allapps_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_allapps_pressed.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_home_all_apps_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_home_all_apps_holo_dark.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_home_search_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_home_search_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_home_voice_search_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_home_voice_search_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_launcher_clear_active_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_launcher_clear_active_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_launcher_clear_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_launcher_clear_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_launcher_info_active_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_launcher_info_active_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_launcher_info_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_launcher_info_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_launcher_market_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_launcher_market_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_launcher_trashcan_active_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_launcher_trashcan_active_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_launcher_trashcan_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/ic_launcher_trashcan_normal_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/overscroll_glow_left.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/overscroll_glow_left.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/overscroll_glow_right.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/overscroll_glow_right.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/page_hover_left_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/page_hover_left_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/page_hover_right_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/page_hover_right_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/paged_view_indicator.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/paged_view_indicator.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/portal_container_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/portal_container_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/portal_ring_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/portal_ring_inner_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/portal_ring_inner_nolip_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/portal_ring_inner_nolip_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/portal_ring_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/portal_ring_outer_holo.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/portal_ring_rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/portal_ring_rest.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/search_frame.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/search_frame.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/tab_selected_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/tab_selected_pressed_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/tab_selected_pressed_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/tab_unselected_pressed_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/tab_unselected_pressed_focused_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_01.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_02.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_03.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_04.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_05.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_08.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_08.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_09.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_09.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_10.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_11.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_12.jpg
--------------------------------------------------------------------------------
/res/drawable-xhdpi/wallpaper_picker_preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/wallpaper_picker_preview.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/widget_container_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/widget_container_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/widget_preview_tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/widget_preview_tile.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/widget_resize_frame_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/widget_resize_frame_holo.9.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/widget_resize_handle_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/widget_resize_handle_bottom.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/widget_resize_handle_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/widget_resize_handle_left.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/widget_resize_handle_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/widget_resize_handle_right.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/widget_resize_handle_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/widget_resize_handle_top.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/workspace_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/drawable-xhdpi/workspace_bg.9.png
--------------------------------------------------------------------------------
/res/drawable/all_apps_button_icon.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/res/drawable/cling_button_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/res/drawable/flying_icon_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/res/drawable/focusable_view_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/res/drawable/info_target_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/res/drawable/remove_target_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/res/drawable/uninstall_target_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/res/drawable/wallpaper_gallery_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
20 |
--------------------------------------------------------------------------------
/res/drawable/wallpaper_gallery_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/res/layout-land/application.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
21 |
--------------------------------------------------------------------------------
/res/layout-land/apps_customize_application.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
30 |
--------------------------------------------------------------------------------
/res/layout-port/application.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
21 |
--------------------------------------------------------------------------------
/res/layout-port/apps_customize_application.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
30 |
--------------------------------------------------------------------------------
/res/layout-sw720dp/wallpaper_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
20 |
26 |
--------------------------------------------------------------------------------
/res/layout/add_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
26 |
--------------------------------------------------------------------------------
/res/layout/apps_customize_progressbar.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
23 |
--------------------------------------------------------------------------------
/res/layout/appwidget_error.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
30 |
--------------------------------------------------------------------------------
/res/layout/custom_workspace_cling.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
23 |
32 |
33 |
--------------------------------------------------------------------------------
/res/layout/market_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
31 |
--------------------------------------------------------------------------------
/res/layout/qsb_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
20 |
21 |
22 |
24 |
25 |
26 |
29 |
30 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/res/layout/scroll_indicator.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
22 |
--------------------------------------------------------------------------------
/res/layout/tab_widget_indicator.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
--------------------------------------------------------------------------------
/res/layout/wallpaper_chooser_base.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
24 |
28 |
29 |
--------------------------------------------------------------------------------
/res/layout/wallpaper_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
24 |
--------------------------------------------------------------------------------
/res/layout/workspace_divider.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
24 |
--------------------------------------------------------------------------------
/res/mipmap-hdpi/ic_launcher_application.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-hdpi/ic_launcher_application.png
--------------------------------------------------------------------------------
/res/mipmap-hdpi/ic_launcher_home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-hdpi/ic_launcher_home.png
--------------------------------------------------------------------------------
/res/mipmap-hdpi/ic_launcher_wallpaper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-hdpi/ic_launcher_wallpaper.png
--------------------------------------------------------------------------------
/res/mipmap-mdpi/ic_launcher_application.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-mdpi/ic_launcher_application.png
--------------------------------------------------------------------------------
/res/mipmap-mdpi/ic_launcher_home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-mdpi/ic_launcher_home.png
--------------------------------------------------------------------------------
/res/mipmap-mdpi/ic_launcher_wallpaper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-mdpi/ic_launcher_wallpaper.png
--------------------------------------------------------------------------------
/res/mipmap-xhdpi/ic_launcher_application.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-xhdpi/ic_launcher_application.png
--------------------------------------------------------------------------------
/res/mipmap-xhdpi/ic_launcher_home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-xhdpi/ic_launcher_home.png
--------------------------------------------------------------------------------
/res/mipmap-xhdpi/ic_launcher_wallpaper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-xhdpi/ic_launcher_wallpaper.png
--------------------------------------------------------------------------------
/res/mipmap-xxhdpi/ic_launcher_application.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-xxhdpi/ic_launcher_application.png
--------------------------------------------------------------------------------
/res/mipmap-xxhdpi/ic_launcher_wallpaper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher2/ceabf41e99c97826c4fa68d94a6eae9a6e14f41e/res/mipmap-xxhdpi/ic_launcher_wallpaper.png
--------------------------------------------------------------------------------
/res/values-af-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-am-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-ar-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-bg-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-ca-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-cs-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-da-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-de-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-el-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-en-rGB-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-es-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-es-rUS-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-fa-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-fi-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-fr-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-hr-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-hu-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-in-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-it-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-iw-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-ja-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-ko-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-land/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 | false
21 |
22 | false
23 |
24 |
26 | 6
27 | 3
28 |
29 |
--------------------------------------------------------------------------------
/res/values-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/res/values-lt-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-lv-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-ms-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-nb-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-nl-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-pl-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-port/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
21 |
22 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-pt-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-pt-rPT-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-rm-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-ro-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-ru-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-sk-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-sl-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-sr-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-sv-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-sw-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-sw340dp-land/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 | 50dp
20 |
21 |
22 | 6dp
23 | 6dp
24 |
25 | 48dp
26 |
27 |
--------------------------------------------------------------------------------
/res/values-sw340dp-land/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
21 |
22 |
28 |
29 |
--------------------------------------------------------------------------------
/res/values-sw340dp-port/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 | false
21 |
22 |
--------------------------------------------------------------------------------
/res/values-sw600dp-land/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 | 8
6 | 5
7 |
8 |
--------------------------------------------------------------------------------
/res/values-sw600dp-port/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 | 96dp
20 | 108dp
21 | 24dp
22 | 24dp
23 | 25dp
24 | 10dp
25 |
26 |
27 | 54dp
28 |
29 |
--------------------------------------------------------------------------------
/res/values-sw600dp/config.xml:
--------------------------------------------------------------------------------
1 |
2 | 6
3 | 6
4 | 7
5 | 3
6 | true
7 |
8 |
9 | true
10 |
11 |
12 | -1000
13 |
14 |
15 |
17 | 6
18 | 6
19 | 36
20 |
21 |
23 | 14000
24 |
25 |
26 |
27 | 80
28 |
29 |
--------------------------------------------------------------------------------
/res/values-sw720dp-port/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
21 |
24 |
25 |
--------------------------------------------------------------------------------
/res/values-sw720dp/config.xml:
--------------------------------------------------------------------------------
1 |
2 | 8
3 | 5
4 | 9
5 | 4
6 | true
7 | true
8 |
9 |
10 |
11 | 90
12 |
13 |
14 |
16 | -1
17 | -1
18 | -1
19 |
20 |
21 |
22 | true
23 |
24 | true
25 |
26 |
27 | 18000
28 |
29 |
30 | false
31 |
32 |
--------------------------------------------------------------------------------
/res/values-sw720dp/wallpapers.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
19 |
20 | - wallpaper_00
21 | - wallpaper_01
22 | - wallpaper_02
23 | - wallpaper_03
24 | - wallpaper_04
25 | - wallpaper_05
26 | - wallpaper_06
27 | - wallpaper_07
28 | - wallpaper_08
29 | - wallpaper_09
30 | - wallpaper_10
31 |
32 |
33 |
--------------------------------------------------------------------------------
/res/values-th-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-tl-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-tr-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-uk-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-vi-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-zh-rCN-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-zh-rTW-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values-zu-land/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
23 | #DAFF0000
24 | #DA0099CC
25 |
26 | #20000000
27 |
28 | #FCCC
29 |
30 | #CCFFFFFF
31 | #A0000000
32 | #FFF
33 |
34 |
--------------------------------------------------------------------------------
/res/values/extra_wallpapers.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/res/values/wallpapers.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
19 |
20 | - wallpaper_01
21 | - wallpaper_02
22 | - wallpaper_03
23 | - wallpaper_04
24 | - wallpaper_05
25 | - wallpaper_06
26 | - wallpaper_07
27 | - wallpaper_08
28 | - wallpaper_09
29 | - wallpaper_10
30 | - wallpaper_11
31 | - wallpaper_12
32 |
33 |
34 |
--------------------------------------------------------------------------------
/res/xml/wallpaper_picker_preview.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
--------------------------------------------------------------------------------
/src/com/android/launcher2/DragScroller.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (C) 2008 The Android Open Source Project
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 |
17 | package com.android.launcher2;
18 |
19 | /**
20 | * Handles scrolling while dragging
21 | *
22 | */
23 | public interface DragScroller {
24 | void scrollLeft();
25 | void scrollRight();
26 |
27 | /**
28 | * The touch point has entered the scroll area; a scroll is imminent.
29 | * This event will only occur while a drag is active.
30 | *
31 | * @param direction The scroll direction
32 | */
33 | boolean onEnterScrollArea(int x, int y, int direction);
34 |
35 | /**
36 | * The touch point has left the scroll area.
37 | * NOTE: This may not be called, if a drop occurs inside the scroll area.
38 | */
39 | boolean onExitScrollArea();
40 | }
41 |
--------------------------------------------------------------------------------
/src/com/android/launcher2/FolderEditText.java:
--------------------------------------------------------------------------------
1 | package com.android.launcher2;
2 |
3 | import android.content.Context;
4 | import android.util.AttributeSet;
5 | import android.view.KeyEvent;
6 | import android.widget.EditText;
7 |
8 | public class FolderEditText extends EditText {
9 |
10 | private Folder mFolder;
11 |
12 | public FolderEditText(Context context) {
13 | super(context);
14 | }
15 |
16 | public FolderEditText(Context context, AttributeSet attrs) {
17 | super(context, attrs);
18 | }
19 |
20 | public FolderEditText(Context context, AttributeSet attrs, int defStyle) {
21 | super(context, attrs, defStyle);
22 | }
23 |
24 | public void setFolder(Folder folder) {
25 | mFolder = folder;
26 | }
27 |
28 | @Override
29 | public boolean onKeyPreIme(int keyCode, KeyEvent event) {
30 | // Catch the back button on the soft keyboard so that we can just close the activity
31 | if (event.getKeyCode() == android.view.KeyEvent.KEYCODE_BACK) {
32 | mFolder.doneEditingFolderName(true);
33 | }
34 | return super.onKeyPreIme(keyCode, event);
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/src/com/android/launcher2/LauncherAnimatorUpdateListener.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (C) 2011 The Android Open Source Project
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 |
17 | package com.android.launcher2;
18 |
19 | import android.animation.ValueAnimator;
20 | import android.animation.ValueAnimator.AnimatorUpdateListener;
21 |
22 | abstract class LauncherAnimatorUpdateListener implements AnimatorUpdateListener {
23 | public void onAnimationUpdate(ValueAnimator animation) {
24 | final float b = (Float) animation.getAnimatedValue();
25 | final float a = 1f - b;
26 | onAnimationUpdate(a, b);
27 | }
28 |
29 | abstract void onAnimationUpdate(float a, float b);
30 | }
--------------------------------------------------------------------------------
/src/com/android/launcher2/TweenCallback.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (C) 2009 The Android Open Source Project
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 |
17 | package com.android.launcher2;
18 |
19 | interface TweenCallback {
20 | void onTweenValueChanged(float value, float oldValue);
21 | void onTweenStarted();
22 | void onTweenFinished();
23 | }
24 |
25 |
--------------------------------------------------------------------------------
/tests/Android.mk:
--------------------------------------------------------------------------------
1 | # Copyright (C) 2011 The Android Open Source Project
2 | #
3 | # Licensed under the Apache License, Version 2.0 (the "License");
4 | # you may not use this file except in compliance with the License.
5 | # You may obtain a copy of the License at
6 | #
7 | # http://www.apache.org/licenses/LICENSE-2.0
8 | #
9 | # Unless required by applicable law or agreed to in writing, software
10 | # distributed under the License is distributed on an "AS IS" BASIS,
11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | # See the License for the specific language governing permissions and
13 | # limitations under the License.
14 | #
15 | LOCAL_PATH := $(call my-dir)
16 | include $(call all-makefiles-under,$(LOCAL_PATH))
17 |
--------------------------------------------------------------------------------
/tests/stress/Android.mk:
--------------------------------------------------------------------------------
1 | # Copyright (C) 2011 The Android Open Source Project
2 | #
3 | # Licensed under the Apache License, Version 2.0 (the "License");
4 | # you may not use this file except in compliance with the License.
5 | # You may obtain a copy of the License at
6 | #
7 | # http://www.apache.org/licenses/LICENSE-2.0
8 | #
9 | # Unless required by applicable law or agreed to in writing, software
10 | # distributed under the License is distributed on an "AS IS" BASIS,
11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | # See the License for the specific language governing permissions and
13 | # limitations under the License.
14 | #
15 | LOCAL_PATH := $(call my-dir)
16 | include $(CLEAR_VARS)
17 |
18 | # We only want this apk build for tests.
19 | LOCAL_MODULE_TAGS := tests
20 |
21 | LOCAL_JAVA_LIBRARIES := android.test.runner
22 |
23 | LOCAL_SRC_FILES := $(call all-java-files-under, src)
24 |
25 | LOCAL_PACKAGE_NAME := LauncherRotationStressTest
26 |
27 | LOCAL_CERTIFICATE := shared
28 |
29 | LOCAL_INSTRUMENTATION_FOR := Launcher2
30 |
31 | include $(BUILD_PACKAGE)
32 |
--------------------------------------------------------------------------------
/tests/stress/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
19 |
20 |
21 |
22 |
23 |
24 |
28 |
29 |
30 |
--------------------------------------------------------------------------------