├── .gitignore ├── .settings └── org.eclipse.jdt.core.prefs ├── AmbilWarna ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── build.gradle ├── build.xml ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ambilwarna_arrow_down.png │ │ ├── ambilwarna_arrow_right.png │ │ ├── ambilwarna_cursor.png │ │ └── ambilwarna_target.png │ ├── drawable-ldpi │ │ ├── ambilwarna_arrow_down.png │ │ ├── ambilwarna_arrow_right.png │ │ ├── ambilwarna_cursor.png │ │ └── ambilwarna_target.png │ ├── drawable-mdpi │ │ ├── ambilwarna_alphacheckered.png │ │ ├── ambilwarna_arrow_down.png │ │ ├── ambilwarna_arrow_right.png │ │ ├── ambilwarna_cursor.png │ │ ├── ambilwarna_hue.png │ │ └── ambilwarna_target.png │ ├── drawable-xhdpi │ │ ├── ambilwarna_arrow_down.png │ │ ├── ambilwarna_arrow_right.png │ │ ├── ambilwarna_cursor.png │ │ └── ambilwarna_target.png │ ├── drawable │ │ └── ambilwarna_alphacheckered_tiled.xml │ ├── layout-land │ │ └── ambilwarna_dialog.xml │ ├── layout │ │ ├── ambilwarna_dialog.xml │ │ └── ambilwarna_pref_widget.xml │ ├── values-land │ │ └── dimen.xml │ ├── values-xlarge-land │ │ └── dimen.xml │ └── values │ │ ├── attrs.xml │ │ └── dimen.xml └── src │ └── yuku │ └── ambilwarna │ ├── AmbilWarnaDialog.java │ ├── AmbilWarnaSquare.java │ └── widget │ ├── AmbilWarnaPrefWidgetView.java │ └── AmbilWarnaPreference.java ├── Change logs.txt ├── LICENSE ├── README.md ├── appcompat ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.txt ├── build.gradle ├── project.properties ├── res │ ├── anim │ │ ├── abc_fade_in.xml │ │ ├── abc_fade_out.xml │ │ ├── abc_slide_in_bottom.xml │ │ ├── abc_slide_in_top.xml │ │ ├── abc_slide_out_bottom.xml │ │ └── abc_slide_out_top.xml │ ├── color │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ ├── abc_primary_text_material_dark.xml │ │ ├── abc_primary_text_material_light.xml │ │ ├── abc_search_url_text.xml │ │ ├── abc_secondary_text_material_dark.xml │ │ └── abc_secondary_text_material_light.xml │ ├── drawable-hdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-ldrtl-hdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-mdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xxxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-mdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xhdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xxhdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xxxhdpi │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ └── abc_tab_indicator_mtrl_alpha.9.png │ ├── drawable │ │ ├── abc_btn_check_material.xml │ │ ├── abc_btn_radio_material.xml │ │ ├── abc_cab_background_internal_bg.xml │ │ ├── abc_cab_background_top_material.xml │ │ ├── abc_edit_text_material.xml │ │ ├── abc_item_background_holo_dark.xml │ │ ├── abc_item_background_holo_light.xml │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ ├── abc_list_selector_holo_dark.xml │ │ ├── abc_list_selector_holo_light.xml │ │ ├── abc_switch_thumb_material.xml │ │ ├── abc_tab_indicator_material.xml │ │ └── abc_textfield_search_material.xml │ ├── layout-v11 │ │ └── abc_screen_content_include.xml │ ├── layout │ │ ├── abc_action_bar_title_item.xml │ │ ├── abc_action_bar_up_container.xml │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ ├── abc_action_menu_item_layout.xml │ │ ├── abc_action_menu_layout.xml │ │ ├── abc_action_mode_bar.xml │ │ ├── abc_action_mode_close_item_material.xml │ │ ├── abc_activity_chooser_view.xml │ │ ├── abc_activity_chooser_view_include.xml │ │ ├── abc_activity_chooser_view_list_item.xml │ │ ├── abc_expanded_menu_layout.xml │ │ ├── abc_list_menu_item_checkbox.xml │ │ ├── abc_list_menu_item_icon.xml │ │ ├── abc_list_menu_item_layout.xml │ │ ├── abc_list_menu_item_radio.xml │ │ ├── abc_popup_menu_item_layout.xml │ │ ├── abc_screen_content_include.xml │ │ ├── abc_screen_simple.xml │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ ├── abc_screen_toolbar.xml │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ ├── abc_search_view.xml │ │ ├── abc_simple_dropdown_hint.xml │ │ └── support_simple_spinner_dropdown_item.xml │ ├── values-af │ │ └── strings.xml │ ├── values-am │ │ └── strings.xml │ ├── values-ar │ │ └── strings.xml │ ├── values-bg │ │ └── strings.xml │ ├── values-bn-rBD │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-en-rGB │ │ └── strings.xml │ ├── values-en-rIN │ │ └── strings.xml │ ├── values-es-rUS │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-et-rEE │ │ └── strings.xml │ ├── values-eu-rES │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fr-rCA │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-gl-rES │ │ └── strings.xml │ ├── values-hi │ │ └── strings.xml │ ├── values-hr │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-hy-rAM │ │ └── strings.xml │ ├── values-in │ │ └── strings.xml │ ├── values-is-rIS │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-ka-rGE │ │ └── strings.xml │ ├── values-kk-rKZ │ │ └── strings.xml │ ├── values-km-rKH │ │ └── strings.xml │ ├── values-kn-rIN │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-ky-rKG │ │ └── strings.xml │ ├── values-land │ │ ├── bools.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── dimens_material.xml │ ├── values-large │ │ ├── bools.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── themes_base.xml │ ├── values-lo-rLA │ │ └── strings.xml │ ├── values-lt │ │ └── strings.xml │ ├── values-lv │ │ └── strings.xml │ ├── values-mk-rMK │ │ └── strings.xml │ ├── values-ml-rIN │ │ └── strings.xml │ ├── values-mn-rMN │ │ └── strings.xml │ ├── values-mr-rIN │ │ └── strings.xml │ ├── values-ms-rMY │ │ └── strings.xml │ ├── values-my-rMM │ │ └── strings.xml │ ├── values-nb │ │ └── strings.xml │ ├── values-ne-rNP │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-port │ │ └── bools.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-pt │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-si-rLK │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sr │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-sw │ │ └── strings.xml │ ├── values-sw600dp │ │ ├── config.xml │ │ └── dimens.xml │ ├── values-ta-rIN │ │ └── strings.xml │ ├── values-te-rIN │ │ └── strings.xml │ ├── values-th │ │ └── strings.xml │ ├── values-tl │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-ur-rPK │ │ └── strings.xml │ ├── values-uz-rUZ │ │ └── strings.xml │ ├── values-v11 │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ └── themes_base.xml │ ├── values-v14 │ │ └── themes_base.xml │ ├── values-v17 │ │ └── styles_rtl.xml │ ├── values-v21 │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ └── themes_base.xml │ ├── values-vi │ │ └── strings.xml │ ├── values-w360dp │ │ └── dimens.xml │ ├── values-w480dp │ │ ├── bools.xml │ │ └── config.xml │ ├── values-w500dp │ │ └── dimens.xml │ ├── values-w600dp │ │ └── dimens.xml │ ├── values-w720dp │ │ └── bools.xml │ ├── values-xlarge-land │ │ └── dimens.xml │ ├── values-xlarge │ │ ├── bools.xml │ │ └── dimens.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values-zh-rHK │ │ └── strings.xml │ ├── values-zh-rTW │ │ └── strings.xml │ ├── values-zu │ │ └── strings.xml │ └── values │ │ ├── attrs.xml │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── colors_material.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ ├── dimens_material.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ ├── styles_rtl.xml │ │ ├── themes.xml │ │ └── themes_base.xml └── src │ └── .readme ├── assets ├── Roboto-Regular.ttf └── Roboto-Thin.ttf ├── bla-web.png ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ic_launcher-web.png ├── libs └── pattern │ └── code │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── build.xml │ ├── proguard.cfg │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ ├── alp_btn_code_lock_default_holo_dark.png │ │ ├── alp_btn_code_lock_default_holo_light.png │ │ ├── alp_btn_code_lock_touched_holo_dark.png │ │ ├── alp_btn_code_lock_touched_holo_light.png │ │ ├── alp_indicator_code_lock_point_area_default_holo_dark.png │ │ ├── alp_indicator_code_lock_point_area_default_holo_light.png │ │ ├── aosp_dialog_full_holo_dark.9.png │ │ ├── aosp_dialog_full_holo_light.9.png │ │ ├── aosp_indicator_code_lock_point_area_blue_holo.png │ │ ├── aosp_indicator_code_lock_point_area_green_holo.png │ │ └── aosp_indicator_code_lock_point_area_red_holo.png │ ├── drawable-mdpi │ │ ├── alp_btn_code_lock_default_holo_dark.png │ │ ├── alp_btn_code_lock_default_holo_light.png │ │ ├── alp_btn_code_lock_touched_holo_dark.png │ │ ├── alp_btn_code_lock_touched_holo_light.png │ │ ├── alp_indicator_code_lock_point_area_default_holo_dark.png │ │ ├── alp_indicator_code_lock_point_area_default_holo_light.png │ │ ├── aosp_dialog_full_holo_dark.9.png │ │ ├── aosp_dialog_full_holo_light.9.png │ │ ├── aosp_indicator_code_lock_point_area_blue_holo.png │ │ ├── aosp_indicator_code_lock_point_area_green_holo.png │ │ └── aosp_indicator_code_lock_point_area_red_holo.png │ ├── drawable-nodpi │ │ ├── aosp_background_holo_dark.png │ │ ├── aosp_background_holo_light.png │ │ ├── aosp_indicator_code_lock_drag_direction_green_up.png │ │ └── aosp_indicator_code_lock_drag_direction_red_up.png │ ├── drawable-xhdpi │ │ ├── alp_btn_code_lock_default_holo_dark.png │ │ ├── alp_btn_code_lock_default_holo_light.png │ │ ├── alp_btn_code_lock_touched_holo_dark.png │ │ ├── alp_btn_code_lock_touched_holo_light.png │ │ ├── alp_indicator_code_lock_point_area_default_holo_dark.png │ │ ├── alp_indicator_code_lock_point_area_default_holo_light.png │ │ ├── aosp_dialog_full_holo_dark.9.png │ │ ├── aosp_dialog_full_holo_light.9.png │ │ ├── aosp_indicator_code_lock_point_area_blue_holo.png │ │ ├── aosp_indicator_code_lock_point_area_green_holo.png │ │ └── aosp_indicator_code_lock_point_area_red_holo.png │ ├── layout-v14 │ │ └── alp_lock_pattern_view.xml │ ├── layout │ │ ├── alp_lock_pattern_activity.xml │ │ ├── alp_lock_pattern_activity_land.xml │ │ └── alp_lock_pattern_view.xml │ ├── values-de │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-land │ │ └── layouts.xml │ ├── values-sw600dp │ │ ├── dimens.xml │ │ └── env.xml │ ├── values-sw720dp │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-vi │ │ └── strings.xml │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── drawables.xml │ │ ├── env.xml │ │ ├── preferences.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── group │ └── pals │ └── android │ └── lib │ └── ui │ └── lockpattern │ ├── LockPatternActivity.java │ ├── collect │ └── Lists.java │ ├── prefs │ ├── DisplayPrefs.java │ ├── Prefs.java │ └── SecurityPrefs.java │ ├── util │ ├── IEncrypter.java │ ├── InvalidEncrypterException.java │ ├── Randoms.java │ └── UI.java │ └── widget │ ├── LockPatternUtils.java │ ├── LockPatternView.java │ ├── LockPatternView_v14.java │ └── ViewCompat_v16.java ├── lint.xml ├── pilocker ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── braindigit │ │ └── pilocker │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ ├── almas │ │ │ ├── Picker.java │ │ │ ├── PickerAdapter.java │ │ │ ├── PickerApp.java │ │ │ ├── ShortCut.java │ │ │ ├── ShortcutSettings.java │ │ │ ├── ShortcutView.java │ │ │ └── Shortcutter.java │ │ │ ├── androidfire │ │ │ └── logger │ │ │ │ └── LoggerHelper.java │ │ │ └── pilockerstable │ │ │ ├── About.java │ │ │ ├── AboutPi.java │ │ │ ├── CropOption.java │ │ │ ├── CropOptionAdapter.java │ │ │ ├── DeviceAdmin.java │ │ │ ├── FontsOverride.java │ │ │ ├── Help.java │ │ │ ├── HomeKeyLocker.java │ │ │ ├── InternalStorageContentProvider.java │ │ │ ├── Lock.java │ │ │ ├── LockBoot.java │ │ │ ├── LockerService.java │ │ │ ├── MainActivity.java │ │ │ ├── Notification.java │ │ │ ├── PanelSwitcher.java │ │ │ ├── PinActivity.java │ │ │ ├── Receiver.java │ │ │ ├── Servicelock.java │ │ │ ├── customViewGroup.java │ │ │ └── test.java │ └── res │ │ ├── drawable-hdpi │ │ ├── about.png │ │ ├── back.png │ │ ├── backward.png │ │ ├── bla.png │ │ ├── blue.png │ │ ├── button.xml │ │ ├── eight.png │ │ ├── five.png │ │ ├── four.png │ │ ├── grad.xml │ │ ├── ic_action_name.png │ │ ├── ic_launcher.png │ │ ├── musicbutton.png │ │ ├── nine.png │ │ ├── one.png │ │ ├── pause.png │ │ ├── pi_logo.png │ │ ├── play.png │ │ ├── seven.png │ │ ├── six.png │ │ ├── three.png │ │ └── two.png │ │ ├── drawable-mdpi │ │ ├── about.png │ │ ├── bla.png │ │ ├── ic_action_name.png │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ ├── about.png │ │ ├── bla.png │ │ ├── ic_action_name.png │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ ├── about.png │ │ ├── bla.png │ │ ├── ic_action_name.png │ │ ├── ic_launcher.png │ │ └── play.png │ │ ├── drawable │ │ ├── button1.xml │ │ ├── button2.xml │ │ ├── check1.xml │ │ ├── check2.xml │ │ ├── check3.xml │ │ ├── grad.xml │ │ ├── main1.xml │ │ ├── main2.xml │ │ ├── pin1.xml │ │ ├── pin2.xml │ │ ├── selector.xml │ │ ├── selector2.xml │ │ ├── selector3.xml │ │ ├── selector4.xml │ │ └── untitled.png │ │ ├── layout-large │ │ ├── activity_lock.xml │ │ └── pin.xml │ │ ├── layout-small │ │ └── pin.xml │ │ ├── layout-xlarge │ │ ├── activity_lock.xml │ │ └── pin.xml │ │ ├── layout │ │ ├── about_pi.xml │ │ ├── activity_about.xml │ │ ├── activity_help.xml │ │ ├── activity_lock.xml │ │ ├── activity_main.xml │ │ ├── crop_selector.xml │ │ ├── logs.xml │ │ ├── music.xml │ │ ├── password.xml │ │ └── pin.xml │ │ ├── menu │ │ ├── about.xml │ │ ├── help.xml │ │ ├── lock.xml │ │ ├── main.xml │ │ └── pin.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── raw │ │ └── gestures │ │ ├── values-sw600dp │ │ └── dimens.xml │ │ ├── values-sw720dp-land │ │ └── dimens.xml │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── integers.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── admin.xml │ └── test │ └── java │ └── com │ └── example │ └── braindigit │ └── pilocker │ └── ExampleUnitTest.java ├── proguard-project.txt ├── project.properties ├── settings.gradle └── simple-crop-image-lib ├── AndroidManifest.xml ├── ant.properties ├── build.gradle ├── build.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-xhdpi │ ├── btn_crop_operator.9.png │ ├── btn_crop_pressed.9.png │ ├── camera_crop_height.png │ ├── camera_crop_width.png │ ├── ic_rotate_left.png │ ├── ic_rotate_right.png │ └── indicator_autocrop.png ├── drawable │ └── selector_crop_button.xml ├── layout │ ├── cropimage.xml │ └── main.xml ├── values-cs │ └── strings.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── eu └── janmuller └── android └── simplecropimage ├── BitmapManager.java ├── CropImage.java ├── CropImageView.java ├── HighlightView.java ├── ImageViewTouchBase.java ├── MonitoredActivity.java ├── RotateBitmap.java └── Util.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/.gitignore -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AmbilWarna/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AmbilWarna/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/AndroidManifest.xml -------------------------------------------------------------------------------- /AmbilWarna/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/build.gradle -------------------------------------------------------------------------------- /AmbilWarna/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/build.xml -------------------------------------------------------------------------------- /AmbilWarna/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/project.properties -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-hdpi/ambilwarna_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-hdpi/ambilwarna_arrow_down.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-hdpi/ambilwarna_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-hdpi/ambilwarna_arrow_right.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-hdpi/ambilwarna_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-hdpi/ambilwarna_cursor.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-hdpi/ambilwarna_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-hdpi/ambilwarna_target.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-ldpi/ambilwarna_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-ldpi/ambilwarna_arrow_down.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-ldpi/ambilwarna_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-ldpi/ambilwarna_arrow_right.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-ldpi/ambilwarna_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-ldpi/ambilwarna_cursor.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-ldpi/ambilwarna_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-ldpi/ambilwarna_target.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-mdpi/ambilwarna_alphacheckered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-mdpi/ambilwarna_alphacheckered.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-mdpi/ambilwarna_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-mdpi/ambilwarna_arrow_down.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-mdpi/ambilwarna_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-mdpi/ambilwarna_arrow_right.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-mdpi/ambilwarna_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-mdpi/ambilwarna_cursor.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-mdpi/ambilwarna_hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-mdpi/ambilwarna_hue.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-mdpi/ambilwarna_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-mdpi/ambilwarna_target.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-xhdpi/ambilwarna_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-xhdpi/ambilwarna_arrow_down.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-xhdpi/ambilwarna_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-xhdpi/ambilwarna_arrow_right.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-xhdpi/ambilwarna_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-xhdpi/ambilwarna_cursor.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable-xhdpi/ambilwarna_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable-xhdpi/ambilwarna_target.png -------------------------------------------------------------------------------- /AmbilWarna/res/drawable/ambilwarna_alphacheckered_tiled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/drawable/ambilwarna_alphacheckered_tiled.xml -------------------------------------------------------------------------------- /AmbilWarna/res/layout-land/ambilwarna_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/layout-land/ambilwarna_dialog.xml -------------------------------------------------------------------------------- /AmbilWarna/res/layout/ambilwarna_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/layout/ambilwarna_dialog.xml -------------------------------------------------------------------------------- /AmbilWarna/res/layout/ambilwarna_pref_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/layout/ambilwarna_pref_widget.xml -------------------------------------------------------------------------------- /AmbilWarna/res/values-land/dimen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/values-land/dimen.xml -------------------------------------------------------------------------------- /AmbilWarna/res/values-xlarge-land/dimen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/values-xlarge-land/dimen.xml -------------------------------------------------------------------------------- /AmbilWarna/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/values/attrs.xml -------------------------------------------------------------------------------- /AmbilWarna/res/values/dimen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/res/values/dimen.xml -------------------------------------------------------------------------------- /AmbilWarna/src/yuku/ambilwarna/AmbilWarnaDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/src/yuku/ambilwarna/AmbilWarnaDialog.java -------------------------------------------------------------------------------- /AmbilWarna/src/yuku/ambilwarna/AmbilWarnaSquare.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/src/yuku/ambilwarna/AmbilWarnaSquare.java -------------------------------------------------------------------------------- /AmbilWarna/src/yuku/ambilwarna/widget/AmbilWarnaPrefWidgetView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/src/yuku/ambilwarna/widget/AmbilWarnaPrefWidgetView.java -------------------------------------------------------------------------------- /AmbilWarna/src/yuku/ambilwarna/widget/AmbilWarnaPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/AmbilWarna/src/yuku/ambilwarna/widget/AmbilWarnaPreference.java -------------------------------------------------------------------------------- /Change logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/Change logs.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/README.md -------------------------------------------------------------------------------- /appcompat/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /appcompat/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/AndroidManifest.xml -------------------------------------------------------------------------------- /appcompat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/README.txt -------------------------------------------------------------------------------- /appcompat/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/build.gradle -------------------------------------------------------------------------------- /appcompat/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/project.properties -------------------------------------------------------------------------------- /appcompat/res/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_background_cache_hint_selector_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_primary_text_disable_only_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_primary_text_disable_only_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/color/abc_primary_text_disable_only_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_primary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/color/abc_primary_text_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_primary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/color/abc_primary_text_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_secondary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/color/abc_secondary_text_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_secondary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/color/abc_secondary_text_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_btn_check_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_btn_check_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_btn_radio_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_btn_radio_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_cab_background_internal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_cab_background_internal_bg.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_cab_background_top_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_cab_background_top_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_edit_text_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_item_background_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_item_background_holo_dark.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_item_background_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_item_background_holo_light.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_list_selector_holo_dark.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_list_selector_holo_light.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_switch_thumb_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_switch_thumb_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_tab_indicator_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_tab_indicator_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_textfield_search_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/drawable/abc_textfield_search_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout-v11/abc_screen_content_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout-v11/abc_screen_content_include.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_title_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_action_bar_title_item.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_up_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_action_bar_up_container.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_action_menu_item_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_action_menu_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_mode_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_action_mode_bar.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_mode_close_item_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_action_mode_close_item_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_activity_chooser_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_activity_chooser_view.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_activity_chooser_view_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_activity_chooser_view_include.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_activity_chooser_view_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_activity_chooser_view_list_item.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_expanded_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_expanded_menu_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_list_menu_item_checkbox.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_list_menu_item_icon.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_list_menu_item_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_radio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_list_menu_item_radio.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_popup_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_popup_menu_item_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_screen_content_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_screen_content_include.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_screen_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_screen_toolbar.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_search_view.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_simple_dropdown_hint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/abc_simple_dropdown_hint.xml -------------------------------------------------------------------------------- /appcompat/res/layout/support_simple_spinner_dropdown_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/layout/support_simple_spinner_dropdown_item.xml -------------------------------------------------------------------------------- /appcompat/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-af/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-am/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-am/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ar/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-bg/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ca/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-cs/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-da/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-de/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-el/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-es/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-et-rEE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-et-rEE/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-eu-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-eu-rES/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-fa/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-fi/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-fr-rCA/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-fr/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-hi/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-hr/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-hu/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-hy-rAM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-hy-rAM/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-in/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-is-rIS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-is-rIS/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-it/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-iw/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ja/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ka-rGE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ka-rGE/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-kk-rKZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-kk-rKZ/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-km-rKH/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-km-rKH/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-kn-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-kn-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ko/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ky-rKG/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ky-rKG/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-land/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-land/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-land/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-land/config.xml -------------------------------------------------------------------------------- /appcompat/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-land/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-land/dimens_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-land/dimens_material.xml -------------------------------------------------------------------------------- /appcompat/res/values-large/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-large/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-large/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-large/config.xml -------------------------------------------------------------------------------- /appcompat/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-large/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-large/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-large/themes_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-lo-rLA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-lo-rLA/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-lt/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-lv/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-mk-rMK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-mk-rMK/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ml-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ml-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-mn-rMN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-mn-rMN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-mr-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-mr-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ms-rMY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ms-rMY/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-my-rMM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-my-rMM/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-nb/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ne-rNP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ne-rNP/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-nl/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-pl/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-port/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-port/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-pt/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ro/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ru/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-si-rLK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-si-rLK/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-sk/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-sl/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-sr/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-sv/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-sw/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sw600dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-sw600dp/config.xml -------------------------------------------------------------------------------- /appcompat/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-ta-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ta-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-te-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-te-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-th/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-tl/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-tr/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-uk/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ur-rPK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-ur-rPK/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-uz-rUZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-uz-rUZ/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-v11/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-v11/styles_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-v11/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-v11/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat/res/values-v11/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-v11/themes_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-v14/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-v14/themes_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-v17/styles_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-v17/styles_rtl.xml -------------------------------------------------------------------------------- /appcompat/res/values-v21/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-v21/styles_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-v21/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-v21/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat/res/values-v21/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-v21/themes_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-vi/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-w360dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-w360dp/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-w480dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-w480dp/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-w480dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-w480dp/config.xml -------------------------------------------------------------------------------- /appcompat/res/values-w500dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-w500dp/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-w600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-w600dp/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-w720dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-w720dp/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-xlarge-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-xlarge-land/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-xlarge/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-xlarge/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-xlarge/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-zu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values-zu/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/attrs.xml -------------------------------------------------------------------------------- /appcompat/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/colors.xml -------------------------------------------------------------------------------- /appcompat/res/values/colors_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/colors_material.xml -------------------------------------------------------------------------------- /appcompat/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/config.xml -------------------------------------------------------------------------------- /appcompat/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values/dimens_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/dimens_material.xml -------------------------------------------------------------------------------- /appcompat/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/ids.xml -------------------------------------------------------------------------------- /appcompat/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/styles.xml -------------------------------------------------------------------------------- /appcompat/res/values/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/styles_base.xml -------------------------------------------------------------------------------- /appcompat/res/values/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat/res/values/styles_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/styles_rtl.xml -------------------------------------------------------------------------------- /appcompat/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/themes.xml -------------------------------------------------------------------------------- /appcompat/res/values/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/res/values/themes_base.xml -------------------------------------------------------------------------------- /appcompat/src/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/appcompat/src/.readme -------------------------------------------------------------------------------- /assets/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/assets/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/assets/Roboto-Thin.ttf -------------------------------------------------------------------------------- /bla-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/bla-web.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/pattern/code/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /libs/pattern/code/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/AndroidManifest.xml -------------------------------------------------------------------------------- /libs/pattern/code/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/build.xml -------------------------------------------------------------------------------- /libs/pattern/code/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/proguard.cfg -------------------------------------------------------------------------------- /libs/pattern/code/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/project.properties -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/alp_btn_code_lock_default_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/alp_btn_code_lock_default_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/alp_btn_code_lock_default_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/alp_btn_code_lock_default_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/alp_btn_code_lock_touched_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/alp_btn_code_lock_touched_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/alp_btn_code_lock_touched_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/alp_btn_code_lock_touched_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/alp_indicator_code_lock_point_area_default_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/alp_indicator_code_lock_point_area_default_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/alp_indicator_code_lock_point_area_default_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/alp_indicator_code_lock_point_area_default_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/aosp_dialog_full_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/aosp_dialog_full_holo_dark.9.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/aosp_dialog_full_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/aosp_dialog_full_holo_light.9.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/aosp_indicator_code_lock_point_area_blue_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/aosp_indicator_code_lock_point_area_blue_holo.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/aosp_indicator_code_lock_point_area_green_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/aosp_indicator_code_lock_point_area_green_holo.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-hdpi/aosp_indicator_code_lock_point_area_red_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-hdpi/aosp_indicator_code_lock_point_area_red_holo.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/alp_btn_code_lock_default_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/alp_btn_code_lock_default_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/alp_btn_code_lock_default_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/alp_btn_code_lock_default_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/alp_btn_code_lock_touched_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/alp_btn_code_lock_touched_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/alp_btn_code_lock_touched_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/alp_btn_code_lock_touched_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/alp_indicator_code_lock_point_area_default_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/alp_indicator_code_lock_point_area_default_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/alp_indicator_code_lock_point_area_default_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/alp_indicator_code_lock_point_area_default_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/aosp_dialog_full_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/aosp_dialog_full_holo_dark.9.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/aosp_dialog_full_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/aosp_dialog_full_holo_light.9.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/aosp_indicator_code_lock_point_area_blue_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/aosp_indicator_code_lock_point_area_blue_holo.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/aosp_indicator_code_lock_point_area_green_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/aosp_indicator_code_lock_point_area_green_holo.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-mdpi/aosp_indicator_code_lock_point_area_red_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-mdpi/aosp_indicator_code_lock_point_area_red_holo.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-nodpi/aosp_background_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-nodpi/aosp_background_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-nodpi/aosp_background_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-nodpi/aosp_background_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-nodpi/aosp_indicator_code_lock_drag_direction_green_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-nodpi/aosp_indicator_code_lock_drag_direction_green_up.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-nodpi/aosp_indicator_code_lock_drag_direction_red_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-nodpi/aosp_indicator_code_lock_drag_direction_red_up.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/alp_btn_code_lock_default_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/alp_btn_code_lock_default_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/alp_btn_code_lock_default_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/alp_btn_code_lock_default_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/alp_btn_code_lock_touched_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/alp_btn_code_lock_touched_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/alp_btn_code_lock_touched_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/alp_btn_code_lock_touched_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/alp_indicator_code_lock_point_area_default_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/alp_indicator_code_lock_point_area_default_holo_dark.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/alp_indicator_code_lock_point_area_default_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/alp_indicator_code_lock_point_area_default_holo_light.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/aosp_dialog_full_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/aosp_dialog_full_holo_dark.9.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/aosp_dialog_full_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/aosp_dialog_full_holo_light.9.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/aosp_indicator_code_lock_point_area_blue_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/aosp_indicator_code_lock_point_area_blue_holo.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/aosp_indicator_code_lock_point_area_green_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/aosp_indicator_code_lock_point_area_green_holo.png -------------------------------------------------------------------------------- /libs/pattern/code/res/drawable-xhdpi/aosp_indicator_code_lock_point_area_red_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/drawable-xhdpi/aosp_indicator_code_lock_point_area_red_holo.png -------------------------------------------------------------------------------- /libs/pattern/code/res/layout-v14/alp_lock_pattern_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/layout-v14/alp_lock_pattern_view.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/layout/alp_lock_pattern_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/layout/alp_lock_pattern_activity.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/layout/alp_lock_pattern_activity_land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/layout/alp_lock_pattern_activity_land.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/layout/alp_lock_pattern_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/layout/alp_lock_pattern_view.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values-de/strings.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values-es/strings.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values-land/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values-land/layouts.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values-sw600dp/env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values-sw600dp/env.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values-sw720dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values-sw720dp/dimens.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values-v11/styles.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values-v14/styles.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values-vi/strings.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values/colors.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values/dimens.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values/drawables.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values/env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values/env.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values/preferences.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values/strings.xml -------------------------------------------------------------------------------- /libs/pattern/code/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/res/values/styles.xml -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/LockPatternActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/LockPatternActivity.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/collect/Lists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/collect/Lists.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/prefs/DisplayPrefs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/prefs/DisplayPrefs.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/prefs/Prefs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/prefs/Prefs.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/prefs/SecurityPrefs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/prefs/SecurityPrefs.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/util/IEncrypter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/util/IEncrypter.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/util/InvalidEncrypterException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/util/InvalidEncrypterException.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/util/Randoms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/util/Randoms.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/util/UI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/util/UI.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/widget/LockPatternUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/widget/LockPatternUtils.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/widget/LockPatternView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/widget/LockPatternView.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/widget/LockPatternView_v14.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/widget/LockPatternView_v14.java -------------------------------------------------------------------------------- /libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/widget/ViewCompat_v16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/libs/pattern/code/src/group/pals/android/lib/ui/lockpattern/widget/ViewCompat_v16.java -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/lint.xml -------------------------------------------------------------------------------- /pilocker/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /pilocker/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/build.gradle -------------------------------------------------------------------------------- /pilocker/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/proguard-rules.pro -------------------------------------------------------------------------------- /pilocker/src/androidTest/java/com/example/braindigit/pilocker/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/androidTest/java/com/example/braindigit/pilocker/ApplicationTest.java -------------------------------------------------------------------------------- /pilocker/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /pilocker/src/main/java/com/almas/Picker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/almas/Picker.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/almas/PickerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/almas/PickerAdapter.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/almas/PickerApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/almas/PickerApp.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/almas/ShortCut.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/almas/ShortCut.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/almas/ShortcutSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/almas/ShortcutSettings.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/almas/ShortcutView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/almas/ShortcutView.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/almas/Shortcutter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/almas/Shortcutter.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/androidfire/logger/LoggerHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/androidfire/logger/LoggerHelper.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/About.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/About.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/AboutPi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/AboutPi.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/CropOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/CropOption.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/CropOptionAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/CropOptionAdapter.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/DeviceAdmin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/DeviceAdmin.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/FontsOverride.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/FontsOverride.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/Help.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/Help.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/HomeKeyLocker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/HomeKeyLocker.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/InternalStorageContentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/InternalStorageContentProvider.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/Lock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/Lock.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/LockBoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/LockBoot.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/LockerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/LockerService.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/MainActivity.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/Notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/Notification.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/PanelSwitcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/PanelSwitcher.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/PinActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/PinActivity.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/Receiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/Receiver.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/Servicelock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/Servicelock.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/customViewGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/customViewGroup.java -------------------------------------------------------------------------------- /pilocker/src/main/java/com/pilockerstable/test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/java/com/pilockerstable/test.java -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/about.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/back.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/backward.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/bla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/bla.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/blue.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/button.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/eight.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/five.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/four.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/grad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/grad.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/ic_action_name.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/musicbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/musicbutton.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/nine.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/one.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/pause.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/pi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/pi_logo.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/play.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/seven.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/six.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/three.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-hdpi/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-hdpi/two.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-mdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-mdpi/about.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-mdpi/bla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-mdpi/bla.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-mdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-mdpi/ic_action_name.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-xhdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-xhdpi/about.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-xhdpi/bla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-xhdpi/bla.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-xhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-xhdpi/ic_action_name.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-xxhdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-xxhdpi/about.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-xxhdpi/bla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-xxhdpi/bla.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-xxhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-xxhdpi/ic_action_name.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable-xxhdpi/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable-xxhdpi/play.png -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/button1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/button1.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/button2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/button2.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/check1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/check1.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/check2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/check2.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/check3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/check3.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/grad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/grad.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/main1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/main1.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/main2.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/pin1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/pin1.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/pin2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/pin2.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/selector.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/selector2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/selector2.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/selector3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/selector3.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/selector4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/selector4.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/drawable/untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/drawable/untitled.png -------------------------------------------------------------------------------- /pilocker/src/main/res/layout-large/activity_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout-large/activity_lock.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout-large/pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout-large/pin.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout-small/pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout-small/pin.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout-xlarge/activity_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout-xlarge/activity_lock.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout-xlarge/pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout-xlarge/pin.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/about_pi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/about_pi.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/activity_about.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/activity_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/activity_help.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/activity_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/activity_lock.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/crop_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/crop_selector.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/logs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/logs.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/music.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/password.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/layout/pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/layout/pin.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/menu/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/menu/about.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/menu/help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/menu/help.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/menu/lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/menu/lock.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/menu/pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/menu/pin.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /pilocker/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /pilocker/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pilocker/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pilocker/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pilocker/src/main/res/raw/gestures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/raw/gestures -------------------------------------------------------------------------------- /pilocker/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /pilocker/src/main/res/xml/admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/main/res/xml/admin.xml -------------------------------------------------------------------------------- /pilocker/src/test/java/com/example/braindigit/pilocker/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/pilocker/src/test/java/com/example/braindigit/pilocker/ExampleUnitTest.java -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/project.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/settings.gradle -------------------------------------------------------------------------------- /simple-crop-image-lib/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/AndroidManifest.xml -------------------------------------------------------------------------------- /simple-crop-image-lib/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/ant.properties -------------------------------------------------------------------------------- /simple-crop-image-lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/build.gradle -------------------------------------------------------------------------------- /simple-crop-image-lib/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/build.xml -------------------------------------------------------------------------------- /simple-crop-image-lib/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/proguard-project.txt -------------------------------------------------------------------------------- /simple-crop-image-lib/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/project.properties -------------------------------------------------------------------------------- /simple-crop-image-lib/res/drawable-xhdpi/btn_crop_operator.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/drawable-xhdpi/btn_crop_operator.9.png -------------------------------------------------------------------------------- /simple-crop-image-lib/res/drawable-xhdpi/btn_crop_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/drawable-xhdpi/btn_crop_pressed.9.png -------------------------------------------------------------------------------- /simple-crop-image-lib/res/drawable-xhdpi/camera_crop_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/drawable-xhdpi/camera_crop_height.png -------------------------------------------------------------------------------- /simple-crop-image-lib/res/drawable-xhdpi/camera_crop_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/drawable-xhdpi/camera_crop_width.png -------------------------------------------------------------------------------- /simple-crop-image-lib/res/drawable-xhdpi/ic_rotate_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/drawable-xhdpi/ic_rotate_left.png -------------------------------------------------------------------------------- /simple-crop-image-lib/res/drawable-xhdpi/ic_rotate_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/drawable-xhdpi/ic_rotate_right.png -------------------------------------------------------------------------------- /simple-crop-image-lib/res/drawable-xhdpi/indicator_autocrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/drawable-xhdpi/indicator_autocrop.png -------------------------------------------------------------------------------- /simple-crop-image-lib/res/drawable/selector_crop_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/drawable/selector_crop_button.xml -------------------------------------------------------------------------------- /simple-crop-image-lib/res/layout/cropimage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/layout/cropimage.xml -------------------------------------------------------------------------------- /simple-crop-image-lib/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/layout/main.xml -------------------------------------------------------------------------------- /simple-crop-image-lib/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/values-cs/strings.xml -------------------------------------------------------------------------------- /simple-crop-image-lib/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/values/strings.xml -------------------------------------------------------------------------------- /simple-crop-image-lib/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/res/values/styles.xml -------------------------------------------------------------------------------- /simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/BitmapManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/BitmapManager.java -------------------------------------------------------------------------------- /simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/CropImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/CropImage.java -------------------------------------------------------------------------------- /simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/CropImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/CropImageView.java -------------------------------------------------------------------------------- /simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/HighlightView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/HighlightView.java -------------------------------------------------------------------------------- /simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/ImageViewTouchBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/ImageViewTouchBase.java -------------------------------------------------------------------------------- /simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/MonitoredActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/MonitoredActivity.java -------------------------------------------------------------------------------- /simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/RotateBitmap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/RotateBitmap.java -------------------------------------------------------------------------------- /simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pi-Developers/Pi-Locker/HEAD/simple-crop-image-lib/src/eu/janmuller/android/simplecropimage/Util.java --------------------------------------------------------------------------------