├── .classpath ├── .gitignore ├── .gitmodules ├── .project ├── .settings ├── org.eclipse.core.runtime.prefs └── org.eclipse.jdt.core.prefs ├── .tx └── config ├── AndroidManifest.xml ├── CHANGELOG ├── LICENSE ├── META-INF └── MANIFEST.MF ├── README.md ├── XMPPClient.iml ├── XMPPClient.ipr ├── XMPPClient.iws ├── add-proguard-release.xml ├── assets └── icudt46l.zip ├── build.xml ├── custom_rules.xml ├── doc ├── FLOW.md ├── NOTES ├── assets │ ├── bkgd │ │ ├── bkgd_WVGA800_landscape.png │ │ └── bkgd_WVGA800_portrait.png │ ├── btn │ │ ├── btn_gray.9.png │ │ ├── btn_green.9.png │ │ └── btn_yellow.9.png │ ├── chats │ │ ├── bkgd_red.9.png │ │ ├── bkgd_red.png │ │ ├── bkgd_white.9.png │ │ ├── bkgd_yellow.9.png │ │ ├── bkgd_yellow.png │ │ └── separator_horiz_chats.png │ ├── ic_contact_picture.png │ ├── ic_contact_picture_2.png │ ├── ic_encrypt_status │ │ ├── ic_black_encrypted_and_verified.png │ │ ├── ic_black_encrypted_not_verified.png │ │ ├── ic_black_unencrypted.png │ │ ├── ic_white_encrypted_and_verified.png │ │ ├── ic_white_encrypted_not_verified.png │ │ └── ic_white_unencrypted.png │ ├── ic_group_maximized.png │ ├── ic_group_minimized.png │ ├── ic_presence │ │ ├── ic_presence_away.png │ │ ├── ic_presence_busy.png │ │ ├── ic_presence_invisible.png │ │ ├── ic_presence_offline.png │ │ └── ic_presence_online.png │ ├── screen_label │ │ ├── screenlabel_bkgd.png │ │ ├── screenlabel_ic_gibberbot.png │ │ ├── screenlabel_ic_info.png │ │ └── screenlabel_logo_gibberbot_white.png │ └── tab │ │ ├── tab_bkgd_focus.png │ │ ├── tab_bkgd_unfocus.png │ │ ├── tab_ic_chats_focus.png │ │ ├── tab_ic_chats_unfocus.png │ │ ├── tab_ic_contacts_focus.png │ │ └── tab_ic_contacts_unfocus.png ├── comps │ ├── 20110301 │ │ ├── gibberbot_ui_chat_A.png │ │ ├── gibberbot_ui_chat_B.png │ │ ├── gibberbot_ui_chats.png │ │ └── gibberbot_ui_contacts.png │ └── 20110415 │ │ ├── gibberbot_ui_chat.png │ │ ├── gibberbot_ui_chats.png │ │ ├── gibberbot_ui_contact_info.png │ │ ├── gibberbot_ui_contacts.png │ │ ├── gibberbot_ui_signin.png │ │ └── gibberbot_ui_splash.png ├── issues │ ├── 2009-04-05-reconnection-manager.txt │ └── 2010-04-14-message-type-exception.txt └── mockups │ ├── gibber_account_signin.png │ ├── gibber_contacts_info.png │ ├── gibber_install_intro.png │ ├── gibber_main_ui.png │ ├── gibber_messaging_keyverification.png │ ├── gibber_messaging_main.png │ └── gibber_settings.png ├── external └── appcompat │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.txt │ ├── libs │ ├── android-support-v4.jar │ └── android-support-v7-appcompat.jar │ ├── 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 ├── fix-translations ├── gitian ├── NOTES.md └── chatsecure.yml ├── libs ├── ASMACK-README.txt ├── HockeySDK-LICENSE ├── HockeySDK.jar ├── IOCipher-v0.3-debug.jar ├── SQLCIPHER_LICENSE ├── android-support-v4.jar ├── android-support-v4.jar.LICENSE ├── android-support-v4.jar.properties ├── android-support-v7-appcompat.jar ├── android-support-v7-appcompat.jar.properties ├── armeabi │ ├── libdatabase_sqlcipher.so │ ├── libiocipher.so │ ├── libsqlcipher_android.so │ ├── libstlport_shared.so │ └── sqlfscat ├── asmack-android-8.jar ├── commons-codec.jar ├── commons-io-2.2.jar ├── gp-bcc-lib.jar ├── guava-11.0.2.jar ├── guava-11.0.2.jar.properties ├── jsoup-1.5.2.jar ├── sqlcipher.jar └── x86 │ ├── libdatabase_sqlcipher.so │ ├── libiocipher.so │ ├── libsqlcipher_android.so │ ├── libstlport_shared.so │ └── sqlfscat ├── logo512.png ├── make-release-build ├── offline.png ├── otr-sample ├── .classpath ├── .project └── src │ └── info │ └── guardianproject │ └── otr │ └── app │ └── SampleApp.java ├── pom.xml ├── project.properties ├── res ├── anim │ ├── push_left_in.xml │ ├── push_left_out.xml │ ├── push_right_in.xml │ └── push_right_out.xml ├── color │ ├── landing_page_text.xml │ └── landing_page_text_secondary.xml ├── drawable-hdpi-v11 │ ├── ic_secure_xfer.png │ ├── ic_stat_status.png │ ├── notify_chatsecure.png │ └── notify_chatsecure_offline.png ├── drawable-hdpi-v9 │ └── ic_stat_status.png ├── drawable-hdpi │ ├── ab_bottom_solid_chatsecure.9.png │ ├── ab_solid_chatsecure.9.png │ ├── ab_stacked_solid_chatsecure.9.png │ ├── ab_texture_tile_chatsecure.png │ ├── ab_transparent_chatsecure.9.png │ ├── btn_cab_done_default_chatsecure.9.png │ ├── btn_cab_done_focused_chatsecure.9.png │ ├── btn_cab_done_pressed_chatsecure.9.png │ ├── cab_background_bottom_chatsecure.9.png │ ├── cab_background_top_chatsecure.9.png │ ├── ic_action_message.png │ ├── ic_action_new.png │ ├── ic_chat_msg_status_failed.png │ ├── ic_chat_msg_status_ok.png │ ├── ic_chat_msg_status_unread.png │ ├── ic_launcher.png │ ├── ic_menu_add_contact.png │ ├── ic_menu_barcode.png │ ├── ic_menu_close.png │ ├── ic_menu_encrypt.png │ ├── ic_menu_fingerprint.png │ ├── ic_menu_info.png │ ├── ic_menu_key.png │ ├── ic_menu_msg_compose.png │ ├── ic_menu_new_chat.png │ ├── ic_menu_search.png │ ├── ic_menu_settings.png │ ├── ic_menu_sign_in.png │ ├── ic_menu_sign_out.png │ ├── ic_menu_switch.png │ ├── ic_menu_trash.png │ ├── ic_menu_unencrypt.png │ ├── ic_menu_verify.png │ ├── ic_secure_xfer.png │ ├── ic_send_holo_light.png │ ├── ic_send_secure.png │ ├── ic_settings_language.png │ ├── ic_stat_status.png │ ├── ic_tab_chats_selected.png │ ├── ic_tab_chats_unselected.png │ ├── ic_tab_contacts_selected.png │ ├── ic_tab_contacts_unselected.png │ ├── list_focused_chatsecure.9.png │ ├── menu_dropdown_panel_chatsecure.9.png │ ├── notify_chatsecure.png │ ├── notify_chatsecure_offline.png │ ├── progress_bg_chatsecure.9.png │ ├── progress_primary_chatsecure.9.png │ ├── progress_secondary_chatsecure.9.png │ ├── showcase.png │ ├── spinner_ab_default_chatsecure.9.png │ ├── spinner_ab_disabled_chatsecure.9.png │ ├── spinner_ab_focused_chatsecure.9.png │ ├── spinner_ab_pressed_chatsecure.9.png │ ├── tab_selected_chatsecure.9.png │ ├── tab_selected_focused_chatsecure.9.png │ ├── tab_selected_pressed_chatsecure.9.png │ ├── tab_unselected_chatsecure.9.png │ ├── tab_unselected_focused_chatsecure.9.png │ └── tab_unselected_pressed_chatsecure.9.png ├── drawable-ldpi-v11 │ └── ic_stat_status.png ├── drawable-ldpi-v9 │ └── ic_stat_status.png ├── drawable-ldpi │ ├── ic_menu_add_contact.png │ ├── ic_menu_barcode.png │ ├── ic_menu_close.png │ ├── ic_menu_encrypt.png │ ├── ic_menu_fingerprint.png │ ├── ic_menu_info.png │ ├── ic_menu_key.png │ ├── ic_menu_new_chat.png │ ├── ic_menu_search.png │ ├── ic_menu_settings.png │ ├── ic_menu_sign_in.png │ ├── ic_menu_sign_out.png │ ├── ic_menu_switch.png │ ├── ic_menu_trash.png │ ├── ic_menu_unencrypt.png │ ├── ic_menu_verify.png │ └── ic_stat_status.png ├── drawable-mdpi-v11 │ ├── ic_secure_xfer.png │ ├── ic_stat_status.png │ ├── notify_chatsecure.png │ └── notify_chatsecure_offline.png ├── drawable-mdpi-v9 │ └── ic_stat_status.png ├── drawable-mdpi │ ├── ab_bottom_solid_chatsecure.9.png │ ├── ab_solid_chatsecure.9.png │ ├── ab_stacked_solid_chatsecure.9.png │ ├── ab_texture_tile_chatsecure.png │ ├── ab_transparent_chatsecure.9.png │ ├── ad_btn_check_off_pressed_holo_light.png │ ├── ad_btn_check_on_pressed_holo_light.png │ ├── ad_btn_radio_off_pressed_holo_light.png │ ├── ad_btn_radio_on_pressed_holo_light.png │ ├── ad_logo.png │ ├── ad_menu_dropdown_panel_holo_light.9.png │ ├── ad_spinner_focused_holo_light.9.png │ ├── ad_spinner_pressed_holo_light.9.png │ ├── ad_tab_selected_holo.9.png │ ├── ad_tab_selected_pressed_holo.9.png │ ├── ad_tab_unselected_holo.9.png │ ├── btn_cab_done_default_chatsecure.9.png │ ├── btn_cab_done_focused_chatsecure.9.png │ ├── btn_cab_done_pressed_chatsecure.9.png │ ├── btn_check_off_holo_light.png │ ├── btn_check_on_holo_light.png │ ├── btn_radio_off_holo_light.png │ ├── btn_radio_on_holo_light.png │ ├── cab_background_bottom_chatsecure.9.png │ ├── cab_background_top_chatsecure.9.png │ ├── ic_action_message.png │ ├── ic_action_new.png │ ├── ic_launcher.png │ ├── ic_menu_add_contact.png │ ├── ic_menu_barcode.png │ ├── ic_menu_close.png │ ├── ic_menu_encrypt.png │ ├── ic_menu_fingerprint.png │ ├── ic_menu_info.png │ ├── ic_menu_key.png │ ├── ic_menu_new_chat.png │ ├── ic_menu_search.png │ ├── ic_menu_settings.png │ ├── ic_menu_sign_in.png │ ├── ic_menu_sign_out.png │ ├── ic_menu_switch.png │ ├── ic_menu_trash.png │ ├── ic_menu_unencrypt.png │ ├── ic_menu_verify.png │ ├── ic_secure_xfer.png │ ├── ic_settings_language.png │ ├── ic_stat_status.png │ ├── list_focused_chatsecure.9.png │ ├── menu_dropdown_panel_chatsecure.9.png │ ├── notify_chatsecure.png │ ├── notify_chatsecure_offline.png │ ├── progress_bg_chatsecure.9.png │ ├── progress_primary_chatsecure.9.png │ ├── progress_secondary_chatsecure.9.png │ ├── showcase.png │ ├── spinner_ab_default_chatsecure.9.png │ ├── spinner_ab_disabled_chatsecure.9.png │ ├── spinner_ab_focused_chatsecure.9.png │ ├── spinner_ab_pressed_chatsecure.9.png │ ├── spinner_default_holo_light.9.png │ ├── spinner_disabled_holo_light.9.png │ ├── tab_selected_chatsecure.9.png │ ├── tab_selected_focused_chatsecure.9.png │ ├── tab_selected_pressed_chatsecure.9.png │ ├── tab_unselected_chatsecure.9.png │ ├── tab_unselected_focused_chatsecure.9.png │ └── tab_unselected_pressed_chatsecure.9.png ├── drawable-xhdpi-v11 │ ├── ic_secure_xfer.png │ ├── ic_stat_status.png │ ├── notify_chatsecure.png │ └── notify_chatsecure_offline.png ├── drawable-xhdpi-v9 │ └── ic_stat_status.png ├── drawable-xhdpi │ ├── ab_bottom_solid_chatsecure.9.png │ ├── ab_solid_chatsecure.9.png │ ├── ab_stacked_solid_chatsecure.9.png │ ├── ab_texture_tile_chatsecure.png │ ├── ab_transparent_chatsecure.9.png │ ├── btn_cab_done_default_chatsecure.9.png │ ├── btn_cab_done_focused_chatsecure.9.png │ ├── btn_cab_done_pressed_chatsecure.9.png │ ├── cab_background_bottom_chatsecure.9.png │ ├── cab_background_top_chatsecure.9.png │ ├── ic_action_message.png │ ├── ic_action_new.png │ ├── ic_chat_msg_status_failed.png │ ├── ic_chat_msg_status_ok.png │ ├── ic_launcher.png │ ├── ic_secure_xfer.png │ ├── ic_settings_language.png │ ├── ic_stat_status.png │ ├── list_focused_chatsecure.9.png │ ├── menu_dropdown_panel_chatsecure.9.png │ ├── notify_chatsecure.png │ ├── notify_chatsecure_offline.png │ ├── progress_bg_chatsecure.9.png │ ├── progress_primary_chatsecure.9.png │ ├── progress_secondary_chatsecure.9.png │ ├── showcase.png │ ├── spinner_ab_default_chatsecure.9.png │ ├── spinner_ab_disabled_chatsecure.9.png │ ├── spinner_ab_focused_chatsecure.9.png │ ├── spinner_ab_pressed_chatsecure.9.png │ ├── tab_selected_chatsecure.9.png │ ├── tab_selected_focused_chatsecure.9.png │ ├── tab_selected_pressed_chatsecure.9.png │ ├── tab_unselected_chatsecure.9.png │ ├── tab_unselected_focused_chatsecure.9.png │ └── tab_unselected_pressed_chatsecure.9.png ├── drawable-xxhdpi-v11 │ ├── ic_secure_xfer.png │ ├── notify_chatsecure.png │ └── notify_chatsecure_offline.png ├── drawable-xxhdpi │ ├── ic_action_new.png │ ├── ic_launcher.png │ ├── ic_secure_xfer.png │ ├── ic_settings_language.png │ ├── notify_chatsecure.png │ └── notify_chatsecure_offline.png ├── drawable-xxxhdpi-v11 │ ├── notify_chatsecure.png │ └── notify_chatsecure_offline.png ├── drawable-xxxhdpi │ ├── ic_settings_language.png │ ├── notify_chatsecure.png │ └── notify_chatsecure_offline.png ├── drawable │ ├── ab_background_textured_chatsecure.xml │ ├── action_about.png │ ├── action_settings.png │ ├── actionbar_tab_bg.xml │ ├── ad_action_bar_gradient_bak_dark.xml │ ├── ad_action_bar_gradient_bak_light.xml │ ├── ad_btn_check_holo_light.xml │ ├── ad_btn_radio_holo_light.xml │ ├── ad_selectable_background.xml │ ├── ad_spinner_background_holo_light.xml │ ├── alerts_and_states_error.png │ ├── alerts_and_states_warning.png │ ├── avatar_unknown.png │ ├── background_encrypted.xml │ ├── background_plaintext.xml │ ├── background_textfield.9.png │ ├── background_verified.xml │ ├── bgcolor2.png │ ├── broken_image_large.png │ ├── btn_cab_done_chatsecure.xml │ ├── btn_gray.xml │ ├── btn_gray_pressed.9.png │ ├── btn_gray_std.9.png │ ├── btn_green.xml │ ├── btn_green_pressed.9.png │ ├── btn_green_std.9.png │ ├── btn_red.xml │ ├── btn_red_pressed.9.png │ ├── btn_red_std.9.png │ ├── btn_yellow.9.png │ ├── bubble.xml │ ├── camera_button_active.xml │ ├── camera_button_inactive.xml │ ├── camera_button_selector.xml │ ├── chat.png │ ├── chat_history_selector.xml │ ├── chat_new.png │ ├── chatsecure_banner.png │ ├── check.png │ ├── content_attachment.png │ ├── content_new_attachment.png │ ├── content_new_attachment_dark.png │ ├── content_new_audio.png │ ├── content_new_picture.png │ ├── content_picture.png │ ├── content_take_picture.png │ ├── dashboard_highlight.xml │ ├── dashboard_highlight_selected.9.png │ ├── default_background.9.png │ ├── device_access_secure.png │ ├── device_access_time.png │ ├── dialog_im_switch_chats_strip.9.png │ ├── droid_watermark.png │ ├── group_chat.png │ ├── ic_black_encrypted_and_verified.png │ ├── ic_black_encrypted_not_verified.png │ ├── ic_black_unencrypted.png │ ├── ic_broken_image.png │ ├── ic_btn_round_more_normal.png │ ├── ic_chat_msg_status_failed.png │ ├── ic_chat_msg_status_ok.png │ ├── ic_chat_msg_status_unread.png │ ├── ic_context_panic.png │ ├── ic_drawer.png │ ├── ic_file.png │ ├── ic_im_block.png │ ├── ic_im_message_not_sent.png │ ├── ic_menu_call.png │ ├── ic_menu_grid.png │ ├── ic_menu_msg_compose.png │ ├── ic_menu_my_profile.png │ ├── ic_menu_view_profile.png │ ├── ic_nav_media_settings.png │ ├── ic_nav_preferences.png │ ├── ic_send_holo_light.png │ ├── ic_send_secure.png │ ├── ic_sidebar_stop.png │ ├── ic_tab_chats.xml │ ├── ic_tab_contacts.xml │ ├── ic_white_encrypted_and_verified.png │ ├── ic_white_encrypted_not_verified.png │ ├── ic_white_unencrypted.png │ ├── icon_barcode.png │ ├── icon_dialog.png │ ├── im_avatar_picture_border_normal.9.png │ ├── list_item_im_bubble_default.9.png │ ├── list_item_im_bubble_pressed.9.png │ ├── list_item_im_bubble_selected.9.png │ ├── lock16.png │ ├── logo512.png │ ├── logo_poweredby.png │ ├── media_audio_play.png │ ├── message_view_rounded_dark.xml │ ├── message_view_rounded_light.xml │ ├── navigation_cancel.png │ ├── navigation_refresh.png │ ├── picture_frame_background.9.png │ ├── progress_horizontal_chatsecure.xml │ ├── radial_back.xml │ ├── rounded_rect.xml │ ├── selected_background.xml │ ├── shadow.xml │ ├── shape_separator.xml │ ├── sidebar_key.png │ ├── sidebar_settings.png │ ├── smiley_smile.png │ ├── social_add_group.png │ ├── social_add_person.png │ ├── social_person.png │ ├── spinner_background_ab_chatsecure.xml │ ├── status_chat.png │ ├── status_chat_new.png │ ├── tab_bkgd_focus.png │ ├── tab_bkgd_unfocus.png │ ├── tab_indicator_ab_chatsecure.xml │ ├── text_divider_horizontal.9.png │ ├── textfield_im_pressed.9.png │ ├── textfield_im_received.9.png │ └── textfield_im_selected.9.png ├── layout-land │ └── activity_lock_screen.xml ├── layout-ldpi │ ├── contact_view.xml │ └── message_view_left.xml ├── layout-mdpi │ ├── contact_view.xml │ └── message_view_left.xml ├── layout-v14 │ ├── account_view.xml │ └── empty_account_view.xml ├── layout │ ├── account_activity.xml │ ├── account_list_activity.xml │ ├── account_view.xml │ ├── account_view_sidebar.xml │ ├── account_wizard_slider.xml │ ├── activity_lock_screen.xml │ ├── add_contact_activity.xml │ ├── alert_dialog_contact_nickname.xml │ ├── alert_dialog_group_chat.xml │ ├── audio_player_activity.xml │ ├── auth_view.xml │ ├── blocked_contact_view.xml │ ├── blocked_contacts_activity.xml │ ├── chat_list_view.xml │ ├── chat_pager.xml │ ├── chat_switcher_dialog.xml │ ├── chat_switcher_item.xml │ ├── chat_view.xml │ ├── contact_grid_filter_view.xml │ ├── contact_list_filter_view.xml │ ├── contact_list_view.xml │ ├── contact_presence_activity.xml │ ├── contact_view.xml │ ├── contacts_picker_activity.xml │ ├── empty_contact_group_view.xml │ ├── empty_conversation_group_view.xml │ ├── group_view.xml │ ├── image_view_activity.xml │ ├── imglist_item.xml │ ├── message_view_left.xml │ ├── message_view_right.xml │ ├── missing_chat_file_store.xml │ ├── passphrase_view.xml │ ├── scrollingtext_buttons_view.xml │ ├── secure_camera.xml │ ├── signing_in_activity.xml │ └── smp_question_dialog.xml ├── menu │ ├── account_settings_menu.xml │ ├── accounts_menu.xml │ ├── chat_list_menu.xml │ ├── contact_info_menu.xml │ ├── contact_list_menu.xml │ └── new_chat_menu.xml ├── raw │ ├── notify.mp3 │ └── notify_license.txt ├── values-ar │ └── strings.xml ├── values-be │ ├── arrays.xml │ └── strings.xml ├── values-bg │ ├── arrays.xml │ └── strings.xml ├── values-bo │ ├── arrays.xml │ └── strings.xml ├── values-ca │ ├── arrays.xml │ └── strings.xml ├── values-cs │ ├── arrays.xml │ └── strings.xml ├── values-da │ ├── arrays.xml │ └── strings.xml ├── values-de │ ├── arrays.xml │ └── strings.xml ├── values-el │ ├── arrays.xml │ └── strings.xml ├── values-en-rGB │ ├── arrays.xml │ └── strings.xml ├── values-es-rCO │ ├── arrays.xml │ └── strings.xml ├── values-es-rES │ ├── arrays.xml │ └── strings.xml ├── values-es-rMX │ ├── arrays.xml │ └── strings.xml ├── values-es-rUS │ └── strings.xml ├── values-es │ ├── arrays.xml │ └── strings.xml ├── values-eu │ ├── arrays.xml │ └── strings.xml ├── values-fa │ ├── arrays.xml │ └── strings.xml ├── values-fi-rFI │ ├── arrays.xml │ └── strings.xml ├── values-fr-rCA │ ├── arrays.xml │ └── strings.xml ├── values-fr │ ├── arrays.xml │ └── strings.xml ├── values-gl │ ├── arrays.xml │ └── strings.xml ├── values-he ├── values-hi │ ├── arrays.xml │ └── strings.xml ├── values-hu │ ├── arrays.xml │ └── strings.xml ├── values-id ├── values-in │ ├── arrays.xml │ └── strings.xml ├── values-it │ ├── arrays.xml │ └── strings.xml ├── values-iw │ ├── arrays.xml │ └── strings.xml ├── values-ja │ ├── arrays.xml │ └── strings.xml ├── values-ko │ ├── arrays.xml │ └── strings.xml ├── values-land │ └── dimens.xml ├── values-mk │ └── strings.xml ├── values-ml │ ├── arrays.xml │ └── strings.xml ├── values-mr │ ├── arrays.xml │ └── strings.xml ├── values-my │ ├── arrays.xml │ └── strings.xml ├── values-nb │ ├── arrays.xml │ └── strings.xml ├── values-nl-rBE │ ├── arrays.xml │ └── strings.xml ├── values-nl │ ├── arrays.xml │ └── strings.xml ├── values-pl │ ├── arrays.xml │ └── strings.xml ├── values-pt-rBR │ ├── arrays.xml │ └── strings.xml ├── values-pt │ ├── arrays.xml │ └── strings.xml ├── values-ro │ ├── arrays.xml │ └── strings.xml ├── values-ru │ ├── arrays.xml │ └── strings.xml ├── values-sc │ ├── arrays.xml │ └── strings.xml ├── values-sk │ ├── arrays.xml │ └── strings.xml ├── values-sl-rSI │ ├── arrays.xml │ └── strings.xml ├── values-sn │ ├── arrays.xml │ └── strings.xml ├── values-sr │ ├── arrays.xml │ └── strings.xml ├── values-sv │ ├── arrays.xml │ └── strings.xml ├── values-tr │ ├── arrays.xml │ └── strings.xml ├── values-uk │ ├── arrays.xml │ └── strings.xml ├── values-vi │ ├── arrays.xml │ └── strings.xml ├── values-zh-rCN │ ├── arrays.xml │ └── strings.xml ├── values-zh-rTW │ ├── arrays.xml │ └── strings.xml ├── values │ ├── arrays.xml │ ├── attrs.xml │ ├── cacheword.xml │ ├── colors.xml │ ├── dimens.xml │ ├── donottranslate.xml │ ├── strings.xml │ └── styles.xml └── xml │ ├── account_settings.xml │ ├── preferences.xml │ └── searchable.xml ├── robo-tests ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── README.md ├── etc │ └── jabber.org.pem └── src │ ├── info │ └── guardianproject │ │ └── otr │ │ └── app │ │ ├── TestUtils.java │ │ └── im │ │ ├── app │ │ ├── AccountActivityTest.java │ │ └── WelcomeActivityTest.java │ │ ├── plugin │ │ └── xmpp │ │ │ ├── ServerTrustManagerTest.java │ │ │ ├── XmppConnectionTest.java │ │ │ └── XmppStreamHandlerTest.java │ │ └── ui │ │ └── AboutActivityTest.java │ └── net │ └── java │ └── otr4j │ ├── crypto │ └── SMTest.java │ └── session │ └── OtrSmTest.java ├── src ├── ChatSessions.ucls ├── com │ └── google │ │ └── zxing │ │ └── integration │ │ └── android │ │ ├── IntentIntegrator.java │ │ ├── IntentIntegratorSupportV4.java │ │ ├── IntentIntegratorV30.java │ │ └── IntentResult.java ├── info │ └── guardianproject │ │ ├── onionkit │ │ └── ui │ │ │ ├── CertDisplayActivity.java │ │ │ ├── OrbotHelper.java │ │ │ └── TorServiceUtils.java │ │ ├── otr │ │ ├── AES_256_CBC.java │ │ ├── AndroidLogHandler.java │ │ ├── IOtrChatSession.aidl │ │ ├── IOtrKeyManager.aidl │ │ ├── OpenSSLPBECommon.java │ │ ├── OpenSSLPBEInputStream.java │ │ ├── OpenSSLPBEOutputStream.java │ │ ├── OtrAndroidKeyManagerImpl.java │ │ ├── OtrChatListener.java │ │ ├── OtrChatManager.java │ │ ├── OtrChatSessionAdapter.java │ │ ├── OtrConstants.java │ │ ├── OtrDataHandler.java │ │ ├── OtrDebugLogger.java │ │ ├── OtrEngineHostImpl.java │ │ ├── TorProxyInfo.java │ │ └── app │ │ │ ├── Broadcaster.java │ │ │ └── im │ │ │ ├── IChatListener.aidl │ │ │ ├── IChatSession.aidl │ │ │ ├── IChatSessionListener.aidl │ │ │ ├── IChatSessionManager.aidl │ │ │ ├── IConnectionCreationListener.aidl │ │ │ ├── IConnectionListener.aidl │ │ │ ├── IContactList.aidl │ │ │ ├── IContactListListener.aidl │ │ │ ├── IContactListManager.aidl │ │ │ ├── IDataListener.aidl │ │ │ ├── IImConnection.aidl │ │ │ ├── IInvitationListener.aidl │ │ │ ├── IRemoteImService.aidl │ │ │ ├── ISubscriptionListener.aidl │ │ │ ├── ImService.java │ │ │ ├── app │ │ │ ├── AccountActivity.java │ │ │ ├── AccountAdapter.java │ │ │ ├── AccountSettingsActivity.java │ │ │ ├── AccountWizardActivity.java │ │ │ ├── AccountsFragment.java │ │ │ ├── AddContactActivity.java │ │ │ ├── BlockedContactView.java │ │ │ ├── BlockedContactsActivity.java │ │ │ ├── BootCompletedListener.java │ │ │ ├── BrandingResources.java │ │ │ ├── CertDisplayActivity.java │ │ │ ├── ChatBackgroundMaker.java │ │ │ ├── ChatFileStore.java │ │ │ ├── ChatSwitcher.java │ │ │ ├── ChatView.java │ │ │ ├── ChatViewPager.java │ │ │ ├── ChooseAccountActivity.java │ │ │ ├── ContactListFilterView.java │ │ │ ├── ContactPresenceActivity.java │ │ │ ├── ContactView.java │ │ │ ├── ContactsPickerActivity.java │ │ │ ├── DatabaseUtils.java │ │ │ ├── DummyActivity.java │ │ │ ├── DynamicPagerAdapter.java │ │ │ ├── ErrorResUtils.java │ │ │ ├── ExitActivity.java │ │ │ ├── ImApp.java │ │ │ ├── ImPluginHelper.java │ │ │ ├── ImRingtonePreference.java │ │ │ ├── ImUrlActivity.java │ │ │ ├── ImageListAdapter.java │ │ │ ├── IntTrie.java │ │ │ ├── LockScreenActivity.java │ │ │ ├── Markup.java │ │ │ ├── MessageView.java │ │ │ ├── MissingChatFileStoreActivity.java │ │ │ ├── NetworkConnectivityListener.java │ │ │ ├── NewChatActivity.java │ │ │ ├── PanicResponderActivity.java │ │ │ ├── PresenceUtils.java │ │ │ ├── ProviderDef.java │ │ │ ├── ProviderListItem.java │ │ │ ├── SettingActivity.java │ │ │ ├── SignInHelper.java │ │ │ ├── SignoutActivity.java │ │ │ ├── SimpleAlertHandler.java │ │ │ ├── SmpResponseActivity.java │ │ │ ├── ThemeableActivity.java │ │ │ ├── UserPresenceView.java │ │ │ ├── WelcomeActivity.java │ │ │ └── adapter │ │ │ │ ├── ChatListenerAdapter.java │ │ │ │ ├── ChatSessionListenerAdapter.java │ │ │ │ ├── ConnectionListenerAdapter.java │ │ │ │ └── ContactListListenerAdapter.java │ │ │ ├── engine │ │ │ ├── Address.java │ │ │ ├── AddressParcelHelper.java │ │ │ ├── ChatGroup.java │ │ │ ├── ChatGroupManager.java │ │ │ ├── ChatSession.java │ │ │ ├── ChatSessionListener.java │ │ │ ├── ChatSessionManager.java │ │ │ ├── ConnectionFactory.java │ │ │ ├── ConnectionListener.java │ │ │ ├── Contact.aidl │ │ │ ├── Contact.java │ │ │ ├── ContactList.java │ │ │ ├── ContactListListener.java │ │ │ ├── ContactListManager.java │ │ │ ├── DataHandler.java │ │ │ ├── GroupListener.java │ │ │ ├── GroupMemberListener.java │ │ │ ├── HeartbeatService.java │ │ │ ├── ImConnection.java │ │ │ ├── ImEntity.java │ │ │ ├── ImErrorInfo.aidl │ │ │ ├── ImErrorInfo.java │ │ │ ├── ImException.java │ │ │ ├── Invitation.aidl │ │ │ ├── Invitation.java │ │ │ ├── InvitationListener.java │ │ │ ├── Message.aidl │ │ │ ├── Message.java │ │ │ ├── MessageListener.java │ │ │ ├── Presence.aidl │ │ │ ├── Presence.java │ │ │ ├── SmsService.java │ │ │ └── SystemService.java │ │ │ ├── plugin │ │ │ ├── BrandingResourceIDs.java │ │ │ ├── IImPlugin.aidl │ │ │ ├── IPasswordDigest.aidl │ │ │ ├── IPresenceMapping.aidl │ │ │ ├── ImConfigNames.java │ │ │ ├── ImPlugin.java │ │ │ ├── ImPluginConstants.java │ │ │ ├── ImPluginInfo.aidl │ │ │ ├── ImPluginInfo.java │ │ │ ├── ImpsConfigNames.java │ │ │ ├── PasswordDigest.java │ │ │ ├── PresenceMapping.java │ │ │ ├── loopback │ │ │ │ ├── LoopbackConnection.java │ │ │ │ ├── LoopbackImPlugin.java │ │ │ │ └── LoopbackPresenceMapping.java │ │ │ └── xmpp │ │ │ │ ├── DeliveryReceipts.java │ │ │ │ ├── DummySSLSocketFactory.java │ │ │ │ ├── LLXmppConnection.java │ │ │ │ ├── LLXmppImPlugin.java │ │ │ │ ├── MySASLDigestMD5Mechanism.java │ │ │ │ ├── XMPPCertPins.java │ │ │ │ ├── XmppAddress.java │ │ │ │ ├── XmppConnection.java │ │ │ │ ├── XmppImPlugin.java │ │ │ │ ├── XmppPresenceMapping.java │ │ │ │ ├── XmppStreamHandler.java │ │ │ │ └── auth │ │ │ │ └── GTalkOAuth2.java │ │ │ ├── provider │ │ │ ├── Imps.java │ │ │ ├── ImpsAddressUtils.java │ │ │ ├── ImpsErrorInfo.java │ │ │ ├── ImpsProvider.java │ │ │ ├── SQLCipherOpenHelper.java │ │ │ └── SQLCipherV3MigrationHook.java │ │ │ ├── service │ │ │ ├── ChatSessionAdapter.java │ │ │ ├── ChatSessionManagerAdapter.java │ │ │ ├── ContactListAdapter.java │ │ │ ├── ContactListManagerAdapter.java │ │ │ ├── HeartbeatService.java │ │ │ ├── ImConnectionAdapter.java │ │ │ ├── ImServiceConstants.java │ │ │ ├── RemoteImService.java │ │ │ └── StatusBarNotifier.java │ │ │ └── ui │ │ │ ├── AboutActivity.java │ │ │ ├── ImageViewActivity.java │ │ │ ├── InstantAutoCompleteTextView.java │ │ │ ├── LetterAvatar.java │ │ │ ├── OtrChatView.java │ │ │ ├── PZSImageView.java │ │ │ ├── RoundedAvatarDrawable.java │ │ │ ├── SecureCameraActivity.java │ │ │ └── SurfaceGrabberActivity.java │ │ └── util │ │ ├── AssetUtil.java │ │ ├── AudioPlayer.java │ │ ├── BackgroundBitmapLoaderTask.java │ │ ├── DNSUtil.java │ │ ├── Debug.java │ │ ├── FontUtils.java │ │ ├── HttpMediaStreamer.java │ │ ├── Languages.java │ │ ├── LinkifyHelper.java │ │ ├── LogCleaner.java │ │ ├── SystemServices.java │ │ ├── Version.java │ │ └── XmppUriHelper.java └── net │ └── java │ └── otr4j │ ├── OtrEngine.java │ ├── OtrEngineHost.java │ ├── OtrEngineImpl.java │ ├── OtrEngineListener.java │ ├── OtrException.java │ ├── OtrKeyManager.java │ ├── OtrKeyManagerDefaultImpl.java │ ├── OtrKeyManagerListener.java │ ├── OtrKeyManagerStore.java │ ├── OtrPolicy.java │ ├── OtrPolicyImpl.java │ ├── crypto │ ├── OtrCryptoEngine.java │ ├── OtrCryptoEngineImpl.java │ ├── OtrCryptoException.java │ ├── OtrTlvHandler.java │ ├── SM.java │ └── Util.java │ ├── io │ ├── OtrInputStream.java │ ├── OtrOutputStream.java │ ├── SerializationConstants.java │ ├── SerializationUtils.java │ └── messages │ │ ├── AbstractEncodedMessage.java │ │ ├── AbstractMessage.java │ │ ├── DHCommitMessage.java │ │ ├── DHKeyMessage.java │ │ ├── DataMessage.java │ │ ├── ErrorMessage.java │ │ ├── MysteriousT.java │ │ ├── PlainTextMessage.java │ │ ├── QueryMessage.java │ │ ├── RevealSignatureMessage.java │ │ ├── SignatureM.java │ │ ├── SignatureMessage.java │ │ └── SignatureX.java │ ├── session │ ├── AuthContext.java │ ├── AuthContextImpl.java │ ├── OtrAssembler.java │ ├── OtrSm.java │ ├── Session.java │ ├── SessionID.java │ ├── SessionImpl.java │ ├── SessionKeys.java │ ├── SessionKeysImpl.java │ ├── SessionStatus.java │ ├── TLV.java │ └── UnknownInstanceException.java │ └── test │ └── io │ └── IOTest.java ├── tests ├── .classpath ├── .project ├── AndroidManifest.xml ├── monkey │ ├── enter.py │ ├── start.py │ └── swipe.py ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ ├── info │ └── guardianproject │ │ └── otr │ │ └── app │ │ └── im │ │ ├── plugin │ │ └── xmpp │ │ │ └── XMPPCertPinsTest.java │ │ └── ui │ │ └── AboutActivityTest.java │ └── net │ └── java │ └── otr4j │ └── crypto │ └── SMTest.java ├── update-ant-build.bat └── update-ant-build.sh /.gitignore: -------------------------------------------------------------------------------- 1 | # auto-generated files from Android builds 2 | bin/ 3 | gen/ 4 | build.xml 5 | ant.properties 6 | default.properties 7 | local.properties 8 | proguard.cfg 9 | proguard-project.txt 10 | # 11 | assets/chatsecure.properties 12 | releases 13 | docs 14 | doc 15 | .directory 16 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Created-By: 1.5.0_13 (Sun Microsystems Inc.) 3 | 4 | -------------------------------------------------------------------------------- /assets/icudt46l.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/assets/icudt46l.zip -------------------------------------------------------------------------------- /doc/assets/bkgd/bkgd_WVGA800_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/bkgd/bkgd_WVGA800_landscape.png -------------------------------------------------------------------------------- /doc/assets/bkgd/bkgd_WVGA800_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/bkgd/bkgd_WVGA800_portrait.png -------------------------------------------------------------------------------- /doc/assets/btn/btn_gray.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/btn/btn_gray.9.png -------------------------------------------------------------------------------- /doc/assets/btn/btn_green.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/btn/btn_green.9.png -------------------------------------------------------------------------------- /doc/assets/btn/btn_yellow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/btn/btn_yellow.9.png -------------------------------------------------------------------------------- /doc/assets/chats/bkgd_red.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/chats/bkgd_red.9.png -------------------------------------------------------------------------------- /doc/assets/chats/bkgd_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/chats/bkgd_red.png -------------------------------------------------------------------------------- /doc/assets/chats/bkgd_white.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/chats/bkgd_white.9.png -------------------------------------------------------------------------------- /doc/assets/chats/bkgd_yellow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/chats/bkgd_yellow.9.png -------------------------------------------------------------------------------- /doc/assets/chats/bkgd_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/chats/bkgd_yellow.png -------------------------------------------------------------------------------- /doc/assets/chats/separator_horiz_chats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/chats/separator_horiz_chats.png -------------------------------------------------------------------------------- /doc/assets/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_contact_picture.png -------------------------------------------------------------------------------- /doc/assets/ic_contact_picture_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_contact_picture_2.png -------------------------------------------------------------------------------- /doc/assets/ic_encrypt_status/ic_black_encrypted_and_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_encrypt_status/ic_black_encrypted_and_verified.png -------------------------------------------------------------------------------- /doc/assets/ic_encrypt_status/ic_black_encrypted_not_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_encrypt_status/ic_black_encrypted_not_verified.png -------------------------------------------------------------------------------- /doc/assets/ic_encrypt_status/ic_black_unencrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_encrypt_status/ic_black_unencrypted.png -------------------------------------------------------------------------------- /doc/assets/ic_encrypt_status/ic_white_encrypted_and_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_encrypt_status/ic_white_encrypted_and_verified.png -------------------------------------------------------------------------------- /doc/assets/ic_encrypt_status/ic_white_encrypted_not_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_encrypt_status/ic_white_encrypted_not_verified.png -------------------------------------------------------------------------------- /doc/assets/ic_encrypt_status/ic_white_unencrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_encrypt_status/ic_white_unencrypted.png -------------------------------------------------------------------------------- /doc/assets/ic_group_maximized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_group_maximized.png -------------------------------------------------------------------------------- /doc/assets/ic_group_minimized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_group_minimized.png -------------------------------------------------------------------------------- /doc/assets/ic_presence/ic_presence_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_presence/ic_presence_away.png -------------------------------------------------------------------------------- /doc/assets/ic_presence/ic_presence_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_presence/ic_presence_busy.png -------------------------------------------------------------------------------- /doc/assets/ic_presence/ic_presence_invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_presence/ic_presence_invisible.png -------------------------------------------------------------------------------- /doc/assets/ic_presence/ic_presence_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_presence/ic_presence_offline.png -------------------------------------------------------------------------------- /doc/assets/ic_presence/ic_presence_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/ic_presence/ic_presence_online.png -------------------------------------------------------------------------------- /doc/assets/screen_label/screenlabel_bkgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/screen_label/screenlabel_bkgd.png -------------------------------------------------------------------------------- /doc/assets/screen_label/screenlabel_ic_gibberbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/screen_label/screenlabel_ic_gibberbot.png -------------------------------------------------------------------------------- /doc/assets/screen_label/screenlabel_ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/screen_label/screenlabel_ic_info.png -------------------------------------------------------------------------------- /doc/assets/screen_label/screenlabel_logo_gibberbot_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/screen_label/screenlabel_logo_gibberbot_white.png -------------------------------------------------------------------------------- /doc/assets/tab/tab_bkgd_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/tab/tab_bkgd_focus.png -------------------------------------------------------------------------------- /doc/assets/tab/tab_bkgd_unfocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/tab/tab_bkgd_unfocus.png -------------------------------------------------------------------------------- /doc/assets/tab/tab_ic_chats_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/tab/tab_ic_chats_focus.png -------------------------------------------------------------------------------- /doc/assets/tab/tab_ic_chats_unfocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/tab/tab_ic_chats_unfocus.png -------------------------------------------------------------------------------- /doc/assets/tab/tab_ic_contacts_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/tab/tab_ic_contacts_focus.png -------------------------------------------------------------------------------- /doc/assets/tab/tab_ic_contacts_unfocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/assets/tab/tab_ic_contacts_unfocus.png -------------------------------------------------------------------------------- /doc/comps/20110301/gibberbot_ui_chat_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110301/gibberbot_ui_chat_A.png -------------------------------------------------------------------------------- /doc/comps/20110301/gibberbot_ui_chat_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110301/gibberbot_ui_chat_B.png -------------------------------------------------------------------------------- /doc/comps/20110301/gibberbot_ui_chats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110301/gibberbot_ui_chats.png -------------------------------------------------------------------------------- /doc/comps/20110301/gibberbot_ui_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110301/gibberbot_ui_contacts.png -------------------------------------------------------------------------------- /doc/comps/20110415/gibberbot_ui_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110415/gibberbot_ui_chat.png -------------------------------------------------------------------------------- /doc/comps/20110415/gibberbot_ui_chats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110415/gibberbot_ui_chats.png -------------------------------------------------------------------------------- /doc/comps/20110415/gibberbot_ui_contact_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110415/gibberbot_ui_contact_info.png -------------------------------------------------------------------------------- /doc/comps/20110415/gibberbot_ui_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110415/gibberbot_ui_contacts.png -------------------------------------------------------------------------------- /doc/comps/20110415/gibberbot_ui_signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110415/gibberbot_ui_signin.png -------------------------------------------------------------------------------- /doc/comps/20110415/gibberbot_ui_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/comps/20110415/gibberbot_ui_splash.png -------------------------------------------------------------------------------- /doc/mockups/gibber_account_signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/mockups/gibber_account_signin.png -------------------------------------------------------------------------------- /doc/mockups/gibber_contacts_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/mockups/gibber_contacts_info.png -------------------------------------------------------------------------------- /doc/mockups/gibber_install_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/mockups/gibber_install_intro.png -------------------------------------------------------------------------------- /doc/mockups/gibber_main_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/mockups/gibber_main_ui.png -------------------------------------------------------------------------------- /doc/mockups/gibber_messaging_keyverification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/mockups/gibber_messaging_keyverification.png -------------------------------------------------------------------------------- /doc/mockups/gibber_messaging_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/mockups/gibber_messaging_main.png -------------------------------------------------------------------------------- /doc/mockups/gibber_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/doc/mockups/gibber_settings.png -------------------------------------------------------------------------------- /external/appcompat/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/libs/android-support-v4.jar -------------------------------------------------------------------------------- /external/appcompat/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/external/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /external/appcompat/src/.readme: -------------------------------------------------------------------------------- 1 | This hidden file is there to ensure there is an src folder. 2 | Once we support binary library this will go away. -------------------------------------------------------------------------------- /libs/HockeySDK.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/HockeySDK.jar -------------------------------------------------------------------------------- /libs/IOCipher-v0.3-debug.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/IOCipher-v0.3-debug.jar -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /libs/armeabi/libdatabase_sqlcipher.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/armeabi/libdatabase_sqlcipher.so -------------------------------------------------------------------------------- /libs/armeabi/libiocipher.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/armeabi/libiocipher.so -------------------------------------------------------------------------------- /libs/armeabi/libsqlcipher_android.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/armeabi/libsqlcipher_android.so -------------------------------------------------------------------------------- /libs/armeabi/libstlport_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/armeabi/libstlport_shared.so -------------------------------------------------------------------------------- /libs/armeabi/sqlfscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/armeabi/sqlfscat -------------------------------------------------------------------------------- /libs/asmack-android-8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/asmack-android-8.jar -------------------------------------------------------------------------------- /libs/commons-codec.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/commons-codec.jar -------------------------------------------------------------------------------- /libs/commons-io-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/commons-io-2.2.jar -------------------------------------------------------------------------------- /libs/gp-bcc-lib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/gp-bcc-lib.jar -------------------------------------------------------------------------------- /libs/guava-11.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/guava-11.0.2.jar -------------------------------------------------------------------------------- /libs/guava-11.0.2.jar.properties: -------------------------------------------------------------------------------- 1 | src=../libsrc/guava-11.0.2-sources.jar 2 | -------------------------------------------------------------------------------- /libs/jsoup-1.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/jsoup-1.5.2.jar -------------------------------------------------------------------------------- /libs/sqlcipher.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/sqlcipher.jar -------------------------------------------------------------------------------- /libs/x86/libdatabase_sqlcipher.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/x86/libdatabase_sqlcipher.so -------------------------------------------------------------------------------- /libs/x86/libiocipher.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/x86/libiocipher.so -------------------------------------------------------------------------------- /libs/x86/libsqlcipher_android.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/x86/libsqlcipher_android.so -------------------------------------------------------------------------------- /libs/x86/libstlport_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/x86/libstlport_shared.so -------------------------------------------------------------------------------- /libs/x86/sqlfscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/libs/x86/sqlfscat -------------------------------------------------------------------------------- /logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/logo512.png -------------------------------------------------------------------------------- /offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/offline.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v11/ic_secure_xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi-v11/ic_secure_xfer.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v11/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi-v11/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v11/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi-v11/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v11/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi-v11/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v9/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi-v9/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_bottom_solid_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ab_bottom_solid_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_solid_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ab_solid_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_stacked_solid_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ab_stacked_solid_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_texture_tile_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ab_texture_tile_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_transparent_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ab_transparent_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_cab_done_default_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/btn_cab_done_default_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_cab_done_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/btn_cab_done_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_cab_done_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/btn_cab_done_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cab_background_bottom_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/cab_background_bottom_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cab_background_top_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/cab_background_top_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_action_message.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_action_new.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_chat_msg_status_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_chat_msg_status_failed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_chat_msg_status_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_chat_msg_status_ok.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_chat_msg_status_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_chat_msg_status_unread.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_add_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_add_contact.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_barcode.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_close.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_encrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_encrypt.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_fingerprint.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_info.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_key.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_msg_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_msg_compose.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_new_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_new_chat.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_settings.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_sign_in.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_sign_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_sign_out.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_switch.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_trash.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_unencrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_unencrypt.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_menu_verify.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_secure_xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_secure_xfer.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_send_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_send_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_send_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_send_secure.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_settings_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_settings_language.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_tab_chats_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_tab_chats_selected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_tab_chats_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_tab_chats_unselected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_tab_contacts_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_tab_contacts_selected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_tab_contacts_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/ic_tab_contacts_unselected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/list_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/menu_dropdown_panel_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/menu_dropdown_panel_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-hdpi/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable-hdpi/progress_bg_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/progress_bg_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/progress_primary_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/progress_primary_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/progress_secondary_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/progress_secondary_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/showcase.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_default_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/spinner_ab_default_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_disabled_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/spinner_ab_disabled_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/spinner_ab_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/spinner_ab_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_selected_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/tab_selected_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_selected_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/tab_selected_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_selected_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/tab_selected_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_unselected_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/tab_unselected_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_unselected_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/tab_unselected_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_unselected_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-hdpi/tab_unselected_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v11/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi-v11/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v9/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi-v9/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_add_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_add_contact.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_barcode.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_close.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_encrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_encrypt.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_fingerprint.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_info.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_key.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_new_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_new_chat.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_search.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_settings.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_sign_in.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_sign_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_sign_out.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_switch.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_trash.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_unencrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_unencrypt.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_menu_verify.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-ldpi/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-mdpi-v11/ic_secure_xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi-v11/ic_secure_xfer.png -------------------------------------------------------------------------------- /res/drawable-mdpi-v11/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi-v11/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-mdpi-v11/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi-v11/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-mdpi-v11/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi-v11/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable-mdpi-v9/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi-v9/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_bottom_solid_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ab_bottom_solid_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_solid_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ab_solid_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_stacked_solid_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ab_stacked_solid_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_texture_tile_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ab_texture_tile_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_transparent_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ab_transparent_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_btn_radio_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_btn_radio_off_pressed_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_btn_radio_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_btn_radio_on_pressed_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_logo.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_spinner_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_spinner_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_spinner_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_spinner_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_tab_selected_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ad_tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ad_tab_unselected_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_cab_done_default_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/btn_cab_done_default_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_cab_done_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/btn_cab_done_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_cab_done_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/btn_cab_done_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/btn_check_off_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/btn_check_on_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_radio_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/btn_radio_off_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_radio_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/btn_radio_on_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/cab_background_bottom_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/cab_background_bottom_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/cab_background_top_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/cab_background_top_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_action_message.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_action_new.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_add_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_add_contact.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_barcode.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_close.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_encrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_encrypt.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_fingerprint.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_info.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_key.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_new_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_new_chat.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_search.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_settings.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_sign_in.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_sign_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_sign_out.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_switch.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_trash.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_unencrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_unencrypt.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_menu_verify.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_secure_xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_secure_xfer.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_settings_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_settings_language.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/list_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/menu_dropdown_panel_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/menu_dropdown_panel_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-mdpi/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable-mdpi/progress_bg_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/progress_bg_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/progress_primary_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/progress_primary_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/progress_secondary_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/progress_secondary_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/showcase.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_default_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/spinner_ab_default_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_disabled_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/spinner_ab_disabled_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/spinner_ab_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/spinner_ab_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/spinner_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/spinner_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_selected_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/tab_selected_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_selected_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/tab_selected_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_selected_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/tab_selected_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_unselected_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/tab_unselected_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_unselected_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/tab_unselected_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_unselected_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-mdpi/tab_unselected_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi-v11/ic_secure_xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi-v11/ic_secure_xfer.png -------------------------------------------------------------------------------- /res/drawable-xhdpi-v11/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi-v11/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-xhdpi-v11/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi-v11/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-xhdpi-v11/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi-v11/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable-xhdpi-v9/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi-v9/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_bottom_solid_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ab_bottom_solid_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_solid_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ab_solid_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_stacked_solid_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ab_stacked_solid_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_texture_tile_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ab_texture_tile_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_transparent_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ab_transparent_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_cab_done_default_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/btn_cab_done_default_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_cab_done_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/btn_cab_done_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_cab_done_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/btn_cab_done_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/cab_background_bottom_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/cab_background_bottom_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/cab_background_top_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/cab_background_top_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ic_action_message.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ic_action_new.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_chat_msg_status_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ic_chat_msg_status_failed.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_chat_msg_status_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ic_chat_msg_status_ok.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_secure_xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ic_secure_xfer.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_settings_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ic_settings_language.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_stat_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/ic_stat_status.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/list_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/menu_dropdown_panel_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/menu_dropdown_panel_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/progress_bg_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/progress_bg_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/progress_primary_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/progress_primary_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/progress_secondary_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/progress_secondary_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/showcase.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_default_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/spinner_ab_default_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_disabled_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/spinner_ab_disabled_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/spinner_ab_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/spinner_ab_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_selected_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/tab_selected_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_selected_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/tab_selected_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_selected_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/tab_selected_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_unselected_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/tab_unselected_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_unselected_focused_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/tab_unselected_focused_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_unselected_pressed_chatsecure.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xhdpi/tab_unselected_pressed_chatsecure.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi-v11/ic_secure_xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxhdpi-v11/ic_secure_xfer.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi-v11/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxhdpi-v11/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi-v11/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxhdpi-v11/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxhdpi/ic_action_new.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_secure_xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxhdpi/ic_secure_xfer.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_settings_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxhdpi/ic_settings_language.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxhdpi/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxhdpi/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi-v11/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxxhdpi-v11/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi-v11/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxxhdpi-v11/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/ic_settings_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxxhdpi/ic_settings_language.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/notify_chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxxhdpi/notify_chatsecure.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/notify_chatsecure_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable-xxxhdpi/notify_chatsecure_offline.png -------------------------------------------------------------------------------- /res/drawable/action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/action_about.png -------------------------------------------------------------------------------- /res/drawable/action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/action_settings.png -------------------------------------------------------------------------------- /res/drawable/alerts_and_states_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/alerts_and_states_error.png -------------------------------------------------------------------------------- /res/drawable/alerts_and_states_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/alerts_and_states_warning.png -------------------------------------------------------------------------------- /res/drawable/avatar_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/avatar_unknown.png -------------------------------------------------------------------------------- /res/drawable/background_encrypted.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /res/drawable/background_plaintext.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /res/drawable/background_textfield.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/background_textfield.9.png -------------------------------------------------------------------------------- /res/drawable/background_verified.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /res/drawable/bgcolor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/bgcolor2.png -------------------------------------------------------------------------------- /res/drawable/broken_image_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/broken_image_large.png -------------------------------------------------------------------------------- /res/drawable/btn_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /res/drawable/btn_gray_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/btn_gray_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/btn_gray_std.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/btn_gray_std.9.png -------------------------------------------------------------------------------- /res/drawable/btn_green_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/btn_green_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/btn_green_std.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/btn_green_std.9.png -------------------------------------------------------------------------------- /res/drawable/btn_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /res/drawable/btn_red_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/btn_red_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/btn_red_std.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/btn_red_std.9.png -------------------------------------------------------------------------------- /res/drawable/btn_yellow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/btn_yellow.9.png -------------------------------------------------------------------------------- /res/drawable/camera_button_active.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/camera_button_inactive.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/chat.png -------------------------------------------------------------------------------- /res/drawable/chat_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/chat_new.png -------------------------------------------------------------------------------- /res/drawable/chatsecure_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/chatsecure_banner.png -------------------------------------------------------------------------------- /res/drawable/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/check.png -------------------------------------------------------------------------------- /res/drawable/content_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/content_attachment.png -------------------------------------------------------------------------------- /res/drawable/content_new_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/content_new_attachment.png -------------------------------------------------------------------------------- /res/drawable/content_new_attachment_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/content_new_attachment_dark.png -------------------------------------------------------------------------------- /res/drawable/content_new_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/content_new_audio.png -------------------------------------------------------------------------------- /res/drawable/content_new_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/content_new_picture.png -------------------------------------------------------------------------------- /res/drawable/content_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/content_picture.png -------------------------------------------------------------------------------- /res/drawable/content_take_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/content_take_picture.png -------------------------------------------------------------------------------- /res/drawable/dashboard_highlight_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/dashboard_highlight_selected.9.png -------------------------------------------------------------------------------- /res/drawable/default_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/default_background.9.png -------------------------------------------------------------------------------- /res/drawable/device_access_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/device_access_secure.png -------------------------------------------------------------------------------- /res/drawable/device_access_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/device_access_time.png -------------------------------------------------------------------------------- /res/drawable/dialog_im_switch_chats_strip.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/dialog_im_switch_chats_strip.9.png -------------------------------------------------------------------------------- /res/drawable/droid_watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/droid_watermark.png -------------------------------------------------------------------------------- /res/drawable/group_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/group_chat.png -------------------------------------------------------------------------------- /res/drawable/ic_black_encrypted_and_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_black_encrypted_and_verified.png -------------------------------------------------------------------------------- /res/drawable/ic_black_encrypted_not_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_black_encrypted_not_verified.png -------------------------------------------------------------------------------- /res/drawable/ic_black_unencrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_black_unencrypted.png -------------------------------------------------------------------------------- /res/drawable/ic_broken_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_broken_image.png -------------------------------------------------------------------------------- /res/drawable/ic_btn_round_more_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_btn_round_more_normal.png -------------------------------------------------------------------------------- /res/drawable/ic_chat_msg_status_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_chat_msg_status_failed.png -------------------------------------------------------------------------------- /res/drawable/ic_chat_msg_status_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_chat_msg_status_ok.png -------------------------------------------------------------------------------- /res/drawable/ic_chat_msg_status_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_chat_msg_status_unread.png -------------------------------------------------------------------------------- /res/drawable/ic_context_panic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_context_panic.png -------------------------------------------------------------------------------- /res/drawable/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_drawer.png -------------------------------------------------------------------------------- /res/drawable/ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_file.png -------------------------------------------------------------------------------- /res/drawable/ic_im_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_im_block.png -------------------------------------------------------------------------------- /res/drawable/ic_im_message_not_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_im_message_not_sent.png -------------------------------------------------------------------------------- /res/drawable/ic_menu_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_menu_call.png -------------------------------------------------------------------------------- /res/drawable/ic_menu_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_menu_grid.png -------------------------------------------------------------------------------- /res/drawable/ic_menu_msg_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_menu_msg_compose.png -------------------------------------------------------------------------------- /res/drawable/ic_menu_my_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_menu_my_profile.png -------------------------------------------------------------------------------- /res/drawable/ic_menu_view_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_menu_view_profile.png -------------------------------------------------------------------------------- /res/drawable/ic_nav_media_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_nav_media_settings.png -------------------------------------------------------------------------------- /res/drawable/ic_nav_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_nav_preferences.png -------------------------------------------------------------------------------- /res/drawable/ic_send_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_send_holo_light.png -------------------------------------------------------------------------------- /res/drawable/ic_send_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_send_secure.png -------------------------------------------------------------------------------- /res/drawable/ic_sidebar_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_sidebar_stop.png -------------------------------------------------------------------------------- /res/drawable/ic_tab_chats.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/ic_tab_contacts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/ic_white_encrypted_and_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_white_encrypted_and_verified.png -------------------------------------------------------------------------------- /res/drawable/ic_white_encrypted_not_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_white_encrypted_not_verified.png -------------------------------------------------------------------------------- /res/drawable/ic_white_unencrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/ic_white_unencrypted.png -------------------------------------------------------------------------------- /res/drawable/icon_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/icon_barcode.png -------------------------------------------------------------------------------- /res/drawable/icon_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/icon_dialog.png -------------------------------------------------------------------------------- /res/drawable/im_avatar_picture_border_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/im_avatar_picture_border_normal.9.png -------------------------------------------------------------------------------- /res/drawable/list_item_im_bubble_default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/list_item_im_bubble_default.9.png -------------------------------------------------------------------------------- /res/drawable/list_item_im_bubble_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/list_item_im_bubble_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/list_item_im_bubble_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/list_item_im_bubble_selected.9.png -------------------------------------------------------------------------------- /res/drawable/lock16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/lock16.png -------------------------------------------------------------------------------- /res/drawable/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/logo512.png -------------------------------------------------------------------------------- /res/drawable/logo_poweredby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/logo_poweredby.png -------------------------------------------------------------------------------- /res/drawable/media_audio_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/media_audio_play.png -------------------------------------------------------------------------------- /res/drawable/navigation_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/navigation_cancel.png -------------------------------------------------------------------------------- /res/drawable/navigation_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/navigation_refresh.png -------------------------------------------------------------------------------- /res/drawable/picture_frame_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/picture_frame_background.9.png -------------------------------------------------------------------------------- /res/drawable/shadow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/sidebar_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/sidebar_key.png -------------------------------------------------------------------------------- /res/drawable/sidebar_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/sidebar_settings.png -------------------------------------------------------------------------------- /res/drawable/smiley_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/smiley_smile.png -------------------------------------------------------------------------------- /res/drawable/social_add_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/social_add_group.png -------------------------------------------------------------------------------- /res/drawable/social_add_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/social_add_person.png -------------------------------------------------------------------------------- /res/drawable/social_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/social_person.png -------------------------------------------------------------------------------- /res/drawable/status_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/status_chat.png -------------------------------------------------------------------------------- /res/drawable/status_chat_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/status_chat_new.png -------------------------------------------------------------------------------- /res/drawable/tab_bkgd_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/tab_bkgd_focus.png -------------------------------------------------------------------------------- /res/drawable/tab_bkgd_unfocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/tab_bkgd_unfocus.png -------------------------------------------------------------------------------- /res/drawable/text_divider_horizontal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/text_divider_horizontal.9.png -------------------------------------------------------------------------------- /res/drawable/textfield_im_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/textfield_im_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/textfield_im_received.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/textfield_im_received.9.png -------------------------------------------------------------------------------- /res/drawable/textfield_im_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/drawable/textfield_im_selected.9.png -------------------------------------------------------------------------------- /res/raw/notify.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/res/raw/notify.mp3 -------------------------------------------------------------------------------- /res/raw/notify_license.txt: -------------------------------------------------------------------------------- 1 | Notify sound thanks to: Corsica_S 2 | 3 | Flopple Sessions » flopple11.aif 4 | http://freesound.org/people/Corsica_S/sounds/50084/ 5 | 6 | License: 7 | http://creativecommons.org/licenses/by/3.0/ 8 | -------------------------------------------------------------------------------- /res/values-be/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-bg/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Накарай / Изискай 5 | Опитай Автоматично 6 | Както е поискано 7 | Изключено / Никога 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-bo/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ཨུ་ཚུགས་བྱེད་པའམ་རེ་སྐུལ་ཞུ་བ། 5 | རང་བཞིན་གྱི་འབད་བརྩོན། 6 | རེ་སྐུལ་ཞུས་བ་ནང་བཞིན 7 | བྱེད་དཀའ་བའམ་ཡང་ན་ནམ་ཡང་བྱེད་མི་ཐུབ་པ། 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-ca/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Força / Requeix 5 | Intenta automàticament 6 | Com s\'ha sol·licitat 7 | Inhabilitat / Mai 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-cs/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Vyžadovat / Stále 5 | Automaticky 6 | Jak bylo požadováno 7 | Zakázáno / Nikdy 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-da/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Gennemtving / altid 5 | Forsøg automatiskt 6 | Efter forespørgsel 7 | Deaktiveret / aldrig 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-de/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Erzwingen 5 | Automatisch versuchen 6 | Wie angefordert 7 | Deaktiviert 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-el/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Εξαναγκασμένο / Απαίτηση 5 | Αυτόματη Απόπειρα 6 | Έπειτα απο αίτηση 7 | Απενεργοποιημένο / Ποτέ 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-en-rGB/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-es-rCO/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forzar / Exigir 5 | Intentar automáticamente 6 | Si se exige 7 | Deshabilitado / Nunca 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-es-rES/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forzar 5 | Intentar automáticamente 6 | Solo si se solicita 7 | Nunca 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-es-rMX/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forzar / Requerir 5 | Intentar Automáticamente 6 | Como solicitado 7 | Desactivado / Nunca 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-es/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forzar 5 | Intentar automáticamente 6 | Solo si se solicita 7 | Nunca 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-eu/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Derrigortu / Eskatu 5 | Automatikoki saiatu 6 | Eskatu bezala 7 | Ezgaituta / Inoiz 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-fa/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | اجبارکن / الزامی 5 | تلاش بطور خودکار 6 | هرطور که درخواست شده 7 | غیرفعال / هرگز 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-fi-rFI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pakota / Vaadi 5 | Yritä automaattisesti 6 | Kuten pyydetty 7 | Pois päältä / Ei koskaan 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-fr-rCA/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forcer / Exiger 5 | Tenter automatiquement 6 | Tel que demandé 7 | Désactivé / Jamais 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-fr/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forcer / Exiger 5 | Tenter automatiquement 6 | Sur demande 7 | Désactivé / Jamais 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-gl/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-he: -------------------------------------------------------------------------------- 1 | values-iw -------------------------------------------------------------------------------- /res/values-hi/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | बल / आवश्यकता 5 | स्वचालित रूप से प्रयास 6 | के रूप में अनुरोध 7 | निष्क्रिय/ कभी नहीँ 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-hu/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-id: -------------------------------------------------------------------------------- 1 | values-in -------------------------------------------------------------------------------- /res/values-in/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Harus / Wajib 5 | Coba Otomatis 6 | Sesuai Permintaan 7 | Non Aktif / Tidak Pernah 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-it/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forza / Richiedi 5 | Tenta automaticamente 6 | Se richiesta 7 | Disabilitata / Mai 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-iw/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-ja/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 強制/要求 5 | 自動的に試行 6 | 要求されたときだけ 7 | 無効にする/絶対に有効にしない 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-ko/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 포스가 필요 / 5 | 자동으로 시도 6 | 요청한대로 7 | 불가 / 절대 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-ml/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-mr/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-my/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | အတင်းအကျပ် / လိုအပ်သော 5 | အလိုအလျောက် ကြိုးစား 6 | တောင်းဆိုထားသည့်အတိုင်း 7 | ပိတ်ထားသော / မည့်သည့်အခါမျှ 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-nb/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tving / Krev 5 | Automatisk forsøk 6 | Som forespurt 7 | Deaktivert / Aldri 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-nl-rBE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-nl/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forceer / vereisen 5 | Automatisch proberen 6 | Op verzoek 7 | Uitgeschakeld / nooit 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-pl/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Wymuś użycie / Wymagane 5 | Automatyczna próba 6 | Jeśli zażądane 7 | Wyłączone / Nigdy 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-pt-rBR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forçar / Exigir 5 | Tentativa Automática 6 | Como Solicitado 7 | Desativado / Nunca 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-pt/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Força / Exigir 5 | Tentar automaticamente 6 | Conforme solicitado 7 | / Nunca condicionada 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-ro/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-ru/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Принудительно / По требованию 5 | Попытаться автоматически 6 | В соответствии с запросом 7 | Отключено / Никогда 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-sc/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-sk/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Vynútiť / Vyžadovať 5 | Automaticky sa pokúsiť 6 | Len ak sa požaduje 7 | Zakázať / Nikdy 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-sl-rSI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Vsili / Zahtevaj 5 | Samodejno poskusi 6 | Če je zahtevano 7 | Onemogočeno / Nikoli 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-sn/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values-sr/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Присили/захтевај 5 | Покушај аутоматски 6 | На захтев 7 | Онемогућено/никад 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-sv/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tvinga / kräv 5 | Försök automatiskt 6 | Som begärt 7 | Avaktiverad / aldrig 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-tr/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Kuvvet iste / 5 | Otomatik Denemesi 6 | Talep olarak 7 | Engelli / Asla 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-uk/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Примусово / вимагається 5 | Автоматичний дозвіл 6 | За запитом 7 | Вимкнено / Ніколи 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-vi/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bắt buộc / Yêu cầu 5 | Tự động thử lại 6 | Như đã yêu cầu 7 | Tắt / Không bao giờ 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-zh-rCN/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 强制要求 5 | 自动尝试 6 | 按照要求 7 | 禁止/从不 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-zh-rTW/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 強制 /要求 / 5 | 自動嘗試 6 | 依照要求 7 | 停用 /從不 8 | 9 | 10 | -------------------------------------------------------------------------------- /robo-tests/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | lib 3 | -------------------------------------------------------------------------------- /src/info/guardianproject/otr/TorProxyInfo.java: -------------------------------------------------------------------------------- 1 | package info.guardianproject.otr; 2 | 3 | public class TorProxyInfo { 4 | 5 | public final static String PROXY_TYPE = "SOCKS5"; 6 | public final static String PROXY_HOST = "127.0.0.1"; 7 | public final static int PROXY_PORT = 9050; 8 | } 9 | -------------------------------------------------------------------------------- /src/info/guardianproject/otr/app/im/ImService.java: -------------------------------------------------------------------------------- 1 | package info.guardianproject.otr.app.im; 2 | 3 | import java.io.File; 4 | 5 | import android.content.Context; 6 | 7 | public interface ImService { 8 | public void showToast(CharSequence text, int duration); 9 | public Context getApplicationContext(); 10 | } 11 | -------------------------------------------------------------------------------- /src/net/java/otr4j/OtrException.java: -------------------------------------------------------------------------------- 1 | package net.java.otr4j; 2 | 3 | @SuppressWarnings("serial") 4 | public class OtrException extends Exception { 5 | public OtrException(Exception e) { 6 | super(e); 7 | } 8 | 9 | public OtrException(String m) { 10 | super(m); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/net/java/otr4j/OtrKeyManagerListener.java: -------------------------------------------------------------------------------- 1 | package net.java.otr4j; 2 | 3 | import net.java.otr4j.session.SessionID; 4 | 5 | public interface OtrKeyManagerListener { 6 | public abstract void verificationStatusChanged(SessionID session); 7 | 8 | public abstract void remoteVerifiedUs(SessionID session); 9 | } 10 | -------------------------------------------------------------------------------- /src/net/java/otr4j/crypto/OtrCryptoException.java: -------------------------------------------------------------------------------- 1 | package net.java.otr4j.crypto; 2 | 3 | import net.java.otr4j.OtrException; 4 | 5 | @SuppressWarnings("serial") 6 | public class OtrCryptoException extends OtrException { 7 | 8 | public OtrCryptoException(Exception e) { 9 | super(e); 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/net/java/otr4j/session/SessionStatus.java: -------------------------------------------------------------------------------- 1 | /* 2 | * otr4j, the open source java otr library. 3 | * 4 | * Distributable under LGPL license. See terms of license at gnu.org. 5 | */ 6 | package net.java.otr4j.session; 7 | 8 | /** @author George Politis */ 9 | public enum SessionStatus { 10 | PLAINTEXT, ENCRYPTED, FINISHED 11 | } 12 | -------------------------------------------------------------------------------- /src/net/java/otr4j/session/UnknownInstanceException.java: -------------------------------------------------------------------------------- 1 | package net.java.otr4j.session; 2 | 3 | import java.net.ProtocolException; 4 | 5 | @SuppressWarnings("serial") 6 | public class UnknownInstanceException extends ProtocolException { 7 | 8 | public UnknownInstanceException(String host) { 9 | super(host); 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /tests/project.properties: -------------------------------------------------------------------------------- 1 | target=android-21 2 | -------------------------------------------------------------------------------- /tests/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/tests/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/tests/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/tests/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ChatSecureAndroid/40754453a490f18c0bcf65d5aa2771b3643c1c93/tests/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World! 5 | ChatSecureTestsTest 6 | 7 | 8 | --------------------------------------------------------------------------------