├── .classpath ├── AndroidManifest.xml ├── README.md ├── ic_launcher-web.png ├── libs ├── android-support-v4.jar ├── nineoldandroids-2.4.0.jar ├── odoo-v2.jar └── swipe_library.jar ├── proguard-project.txt ├── project.properties ├── res ├── color │ ├── drawer_counter_textview_color_selector.xml │ ├── drawer_imageview_tint_color_selector.xml │ └── drawer_textview_color_selector.xml ├── drawable-hdpi │ ├── actionbar_bottom_border.9.png │ ├── card.9.png │ ├── caret_grey.9.png │ ├── drawer_shadow.9.png │ ├── ic_action_about.png │ ├── ic_action_accounts.png │ ├── ic_action_add_account.png │ ├── ic_action_add_users.png │ ├── ic_action_alerts_and_states_warning.png │ ├── ic_action_archive.png │ ├── ic_action_arrow_next.png │ ├── ic_action_arrow_right_hi.png │ ├── ic_action_attachment.png │ ├── ic_action_briefcase.png │ ├── ic_action_cancel.png │ ├── ic_action_clipboard.png │ ├── ic_action_company.png │ ├── ic_action_content_attachment.png │ ├── ic_action_content_new.png │ ├── ic_action_content_new_attachment.png │ ├── ic_action_content_remove.png │ ├── ic_action_database.png │ ├── ic_action_done.png │ ├── ic_action_exclamation_mark.png │ ├── ic_action_inbox.png │ ├── ic_action_location_web.png │ ├── ic_action_lock.png │ ├── ic_action_logout.png │ ├── ic_action_mail_add.png │ ├── ic_action_mail_compose.png │ ├── ic_action_mark_read.png │ ├── ic_action_mark_unread.png │ ├── ic_action_meeting.png │ ├── ic_action_more.png │ ├── ic_action_new_note.png │ ├── ic_action_notes.png │ ├── ic_action_overflow.png │ ├── ic_action_rating_bad.png │ ├── ic_action_rating_good.png │ ├── ic_action_rating_good_blue.png │ ├── ic_action_rating_good_white.png │ ├── ic_action_rating_important.png │ ├── ic_action_rating_not_important.png │ ├── ic_action_remove.png │ ├── ic_action_reply.png │ ├── ic_action_resize.png │ ├── ic_action_search.png │ ├── ic_action_send_now.png │ ├── ic_action_settings.png │ ├── ic_action_social_group.png │ ├── ic_action_social_person.png │ ├── ic_action_social_reply.png │ ├── ic_action_speech_to_text.png │ ├── ic_action_star.png │ ├── ic_action_star_blue.png │ ├── ic_action_star_dark.png │ ├── ic_action_starred.png │ ├── ic_action_suppliers.png │ ├── ic_action_sync.png │ ├── ic_action_todo.png │ ├── ic_action_undo.png │ ├── ic_action_unsent_mail.png │ ├── ic_action_unstarred.png │ ├── ic_action_user.png │ ├── ic_action_user_dp.png │ ├── ic_action_vote_empty.png │ ├── ic_action_vote_filled.png │ ├── ic_drawer.png │ ├── ic_launcher.png │ ├── ic_launcher_odoo.png │ ├── ic_menu__discard.png │ ├── ic_menu_action_content_new_attachment.png │ ├── ic_menu_add_group.png │ ├── ic_menu_archive_holo_light.png │ ├── ic_menu_edit.png │ ├── ic_menu_forward.png │ ├── ic_menu_inbox_main_holo_light.png │ ├── ic_menu_navigation_back.png │ ├── ic_menu_new_plus.png │ ├── ic_menu_notes.png │ ├── ic_menu_right_arrow.png │ ├── ic_menu_save.png │ ├── ic_menu_share.png │ ├── ic_navigation_drawer.png │ ├── ic_odoo_o.png │ ├── ic_odoo_o_purple.png │ ├── ic_rating_important.png │ ├── ic_rating_not_important.png │ ├── ic_star_not_selected.png │ ├── ic_star_selected.png │ ├── ic_stat_refresh.png │ ├── ic_thumbs_up_selected_dark_tablet.png │ ├── ic_thumbs_up_unselected_dark_tablet.png │ ├── ptr_progress_bg_holo_light.9.png │ ├── ptr_progress_primary_holo_light.9.png │ ├── ptr_progress_secondary_holo_light.9.png │ └── toast_frame.9.png ├── drawable-land │ ├── listitem_pressed.xml │ └── oe_listview_background_selector.xml ├── drawable-ldpi │ └── toast_frame.9.png ├── drawable-mdpi │ ├── account_continue_button.png │ ├── actionbar_bottom_border.9.png │ ├── card.9.png │ ├── caret_grey.9.png │ ├── drawer_shadow.9.png │ ├── ic_action_about.png │ ├── ic_action_accounts.png │ ├── ic_action_add_account.png │ ├── ic_action_add_users.png │ ├── ic_action_alerts_and_states_warning.png │ ├── ic_action_archive.png │ ├── ic_action_arrow_next.png │ ├── ic_action_arrow_right_hi.png │ ├── ic_action_attachment.png │ ├── ic_action_briefcase.png │ ├── ic_action_cancel.png │ ├── ic_action_clipboard.png │ ├── ic_action_company.png │ ├── ic_action_content_attachment.png │ ├── ic_action_content_new.png │ ├── ic_action_content_new_attachment.png │ ├── ic_action_content_remove.png │ ├── ic_action_database.png │ ├── ic_action_done.png │ ├── ic_action_exclamation_mark.png │ ├── ic_action_inbox.png │ ├── ic_action_location_web.png │ ├── ic_action_lock.png │ ├── ic_action_logout.png │ ├── ic_action_mail_add.png │ ├── ic_action_mail_compose.png │ ├── ic_action_mark_read.png │ ├── ic_action_mark_unread.png │ ├── ic_action_meeting.png │ ├── ic_action_more.png │ ├── ic_action_new_note.png │ ├── ic_action_notes.png │ ├── ic_action_overflow.png │ ├── ic_action_rating_bad.png │ ├── ic_action_rating_filled_small.png │ ├── ic_action_rating_good.png │ ├── ic_action_rating_good_blue.png │ ├── ic_action_rating_good_white.png │ ├── ic_action_rating_important.png │ ├── ic_action_rating_not_important.png │ ├── ic_action_remove.png │ ├── ic_action_reply.png │ ├── ic_action_resize.png │ ├── ic_action_search.png │ ├── ic_action_send_now.png │ ├── ic_action_settings.png │ ├── ic_action_social_group.png │ ├── ic_action_social_person.png │ ├── ic_action_social_reply.png │ ├── ic_action_speech_to_text.png │ ├── ic_action_star.png │ ├── ic_action_star_blue.png │ ├── ic_action_star_dark.png │ ├── ic_action_starred.png │ ├── ic_action_suppliers.png │ ├── ic_action_sync.png │ ├── ic_action_todo.png │ ├── ic_action_undo.png │ ├── ic_action_unsent_mail.png │ ├── ic_action_unstarred.png │ ├── ic_action_user.png │ ├── ic_action_user_dp.png │ ├── ic_action_vote_empty.png │ ├── ic_action_vote_empty_small.png │ ├── ic_action_vote_filled.png │ ├── ic_drawer.png │ ├── ic_launcher.png │ ├── ic_launcher_odoo.png │ ├── ic_menu__discard.png │ ├── ic_menu_action_content_new_attachment.png │ ├── ic_menu_add_group.png │ ├── ic_menu_archive_holo_light.png │ ├── ic_menu_edit.png │ ├── ic_menu_forward.png │ ├── ic_menu_inbox_main_holo_light.png │ ├── ic_menu_navigation_back.png │ ├── ic_menu_new_plus.png │ ├── ic_menu_notes.png │ ├── ic_menu_right_arrow.png │ ├── ic_menu_save.png │ ├── ic_menu_share.png │ ├── ic_navigation_drawer.png │ ├── ic_odoo_o.png │ ├── ic_odoo_o_purple.png │ ├── ic_rating_important.png │ ├── ic_rating_not_important.png │ ├── ic_star_not_selected.png │ ├── ic_star_selected.png │ ├── ic_stat_av_download.png │ ├── ic_stat_refresh.png │ ├── ic_thumbs_up_selected_dark_tablet.png │ ├── ic_thumbs_up_unselected_dark_tablet.png │ ├── ptr_progress_bg_holo_light.9.png │ ├── ptr_progress_primary_holo_light.9.png │ ├── ptr_progress_secondary_holo_light.9.png │ ├── ptr_progressbar_indeterminate_holo1.png │ ├── ptr_progressbar_indeterminate_holo2.png │ ├── ptr_progressbar_indeterminate_holo3.png │ ├── ptr_progressbar_indeterminate_holo4.png │ ├── ptr_progressbar_indeterminate_holo5.png │ ├── ptr_progressbar_indeterminate_holo6.png │ ├── ptr_progressbar_indeterminate_holo7.png │ ├── ptr_progressbar_indeterminate_holo8.png │ └── toast_frame.9.png ├── drawable-nodpi │ ├── actionbar_bottom_border.9.png │ ├── attachment.png │ ├── avatar.png │ ├── default_cover.png │ ├── file_attachment.png │ ├── odoo.png │ ├── odoo_small.png │ └── widget_preview.png ├── drawable-xhdpi │ ├── account_continue_button.png │ ├── actionbar_bottom_border.9.png │ ├── button_focused.9.png │ ├── button_pressed.9.png │ ├── card.9.png │ ├── caret_grey.9.png │ ├── drawer_shadow.9.png │ ├── ic_action_about.png │ ├── ic_action_accounts.png │ ├── ic_action_add_account.png │ ├── ic_action_add_users.png │ ├── ic_action_alerts_and_states_warning.png │ ├── ic_action_archive.png │ ├── ic_action_arrow_next.png │ ├── ic_action_arrow_right_hi.png │ ├── ic_action_attachment.png │ ├── ic_action_briefcase.png │ ├── ic_action_cancel.png │ ├── ic_action_clipboard.png │ ├── ic_action_company.png │ ├── ic_action_content_attachment.png │ ├── ic_action_content_new.png │ ├── ic_action_content_new_attachment.png │ ├── ic_action_content_remove.png │ ├── ic_action_database.png │ ├── ic_action_done.png │ ├── ic_action_exclamation_mark.png │ ├── ic_action_inbox.png │ ├── ic_action_location_web.png │ ├── ic_action_lock.png │ ├── ic_action_logout.png │ ├── ic_action_mail_add.png │ ├── ic_action_mail_compose.png │ ├── ic_action_mark_read.png │ ├── ic_action_mark_unread.png │ ├── ic_action_meeting.png │ ├── ic_action_more.png │ ├── ic_action_new_note.png │ ├── ic_action_notes.png │ ├── ic_action_overflow.png │ ├── ic_action_rating_bad.png │ ├── ic_action_rating_good.png │ ├── ic_action_rating_good_blue.png │ ├── ic_action_rating_good_white.png │ ├── ic_action_rating_important.png │ ├── ic_action_rating_not_important.png │ ├── ic_action_remove.png │ ├── ic_action_reply.png │ ├── ic_action_resize.png │ ├── ic_action_search.png │ ├── ic_action_send_now.png │ ├── ic_action_settings.png │ ├── ic_action_social_group.png │ ├── ic_action_social_person.png │ ├── ic_action_social_reply.png │ ├── ic_action_speech_to_text.png │ ├── ic_action_star.png │ ├── ic_action_star_blue.png │ ├── ic_action_star_dark.png │ ├── ic_action_starred.png │ ├── ic_action_suppliers.png │ ├── ic_action_sync.png │ ├── ic_action_todo.png │ ├── ic_action_undo.png │ ├── ic_action_unsent_mail.png │ ├── ic_action_unstarred.png │ ├── ic_action_user.png │ ├── ic_action_user_dp.png │ ├── ic_action_vote_empty.png │ ├── ic_action_vote_filled.png │ ├── ic_drawer.png │ ├── ic_launcher.png │ ├── ic_launcher_odoo.png │ ├── ic_menu__discard.png │ ├── ic_menu_action_content_new_attachment.png │ ├── ic_menu_add_group.png │ ├── ic_menu_archive_holo_light.png │ ├── ic_menu_edit.png │ ├── ic_menu_forward.png │ ├── ic_menu_inbox_main_holo_light.png │ ├── ic_menu_navigation_back.png │ ├── ic_menu_new_plus.png │ ├── ic_menu_notes.png │ ├── ic_menu_right_arrow.png │ ├── ic_menu_save.png │ ├── ic_menu_share.png │ ├── ic_navigation_drawer.png │ ├── ic_odoo_o.png │ ├── ic_odoo_o_purple.png │ ├── ic_rating_important.png │ ├── ic_rating_not_important.png │ ├── ic_star_not_selected.png │ ├── ic_star_selected.png │ ├── ic_stat_refresh.png │ ├── ic_thumbs_up_selected_dark_tablet.png │ ├── ic_thumbs_up_unselected_dark_tablet.png │ ├── ptr_progress_bg_holo_light.9.png │ ├── ptr_progress_primary_holo_light.9.png │ ├── ptr_progress_secondary_holo_light.9.png │ └── toast_frame.9.png ├── drawable-xxhdpi │ ├── account_continue_button.png │ ├── actionbar_bottom_border.9.png │ ├── card.9.png │ ├── caret_grey.9.png │ ├── drawer_shadow.9.png │ ├── ic_action_about.png │ ├── ic_action_accounts.png │ ├── ic_action_add_account.png │ ├── ic_action_add_users.png │ ├── ic_action_alerts_and_states_warning.png │ ├── ic_action_archive.png │ ├── ic_action_arrow_next.png │ ├── ic_action_arrow_right_hi.png │ ├── ic_action_attachment.png │ ├── ic_action_briefcase.png │ ├── ic_action_cancel.png │ ├── ic_action_clipboard.png │ ├── ic_action_company.png │ ├── ic_action_content_attachment.png │ ├── ic_action_content_new.png │ ├── ic_action_content_new_attachment.png │ ├── ic_action_content_remove.png │ ├── ic_action_database.png │ ├── ic_action_done.png │ ├── ic_action_exclamation_mark.png │ ├── ic_action_inbox.png │ ├── ic_action_location_web.png │ ├── ic_action_lock.png │ ├── ic_action_logout.png │ ├── ic_action_mail_add.png │ ├── ic_action_mail_compose.png │ ├── ic_action_mark_read.png │ ├── ic_action_mark_unread.png │ ├── ic_action_more.png │ ├── ic_action_notes.png │ ├── ic_action_overflow.png │ ├── ic_action_rating_bad.png │ ├── ic_action_rating_good.png │ ├── ic_action_rating_good_blue.png │ ├── ic_action_rating_good_white.png │ ├── ic_action_rating_important.png │ ├── ic_action_rating_not_important.png │ ├── ic_action_remove.png │ ├── ic_action_resize.png │ ├── ic_action_search.png │ ├── ic_action_send_now.png │ ├── ic_action_settings.png │ ├── ic_action_social_group.png │ ├── ic_action_social_person.png │ ├── ic_action_social_reply.png │ ├── ic_action_speech_to_text.png │ ├── ic_action_star.png │ ├── ic_action_star_blue.png │ ├── ic_action_starred.png │ ├── ic_action_suppliers.png │ ├── ic_action_sync.png │ ├── ic_action_todo.png │ ├── ic_action_undo.png │ ├── ic_action_unsent_mail.png │ ├── ic_action_unstarred.png │ ├── ic_action_user.png │ ├── ic_action_user_dp.png │ ├── ic_action_vote_empty.png │ ├── ic_action_vote_filled.png │ ├── ic_drawer.png │ ├── ic_drawer_accounts_collapse.png │ ├── ic_drawer_accounts_expand.png │ ├── ic_launcher.png │ ├── ic_launcher_odoo.png │ ├── ic_menu__discard.png │ ├── ic_menu_action_content_new_attachment.png │ ├── ic_menu_add_group.png │ ├── ic_menu_archive_holo_light.png │ ├── ic_menu_edit.png │ ├── ic_menu_forward.png │ ├── ic_menu_inbox_main_holo_light.png │ ├── ic_menu_navigation_back.png │ ├── ic_menu_new_plus.png │ ├── ic_menu_notes.png │ ├── ic_menu_right_arrow.png │ ├── ic_menu_save.png │ ├── ic_menu_share.png │ ├── ic_navigation_drawer.png │ ├── ic_odoo_o.png │ ├── ic_odoo_o_purple.png │ ├── ic_rating_important.png │ ├── ic_rating_not_important.png │ ├── ic_star_not_selected.png │ ├── ic_star_selected.png │ ├── ic_stat_av_download.png │ ├── ic_thumbs_up_selected_dark_tablet.png │ ├── ic_thumbs_up_unselected_dark_tablet.png │ ├── ptr_progress_bg_holo_light.9.png │ ├── ptr_progress_primary_holo_light.9.png │ ├── ptr_progress_secondary_holo_light.9.png │ ├── ptr_progressbar_indeterminate_holo1.png │ ├── ptr_progressbar_indeterminate_holo2.png │ ├── ptr_progressbar_indeterminate_holo3.png │ ├── ptr_progressbar_indeterminate_holo4.png │ ├── ptr_progressbar_indeterminate_holo5.png │ ├── ptr_progressbar_indeterminate_holo6.png │ ├── ptr_progressbar_indeterminate_holo7.png │ ├── ptr_progressbar_indeterminate_holo8.png │ └── toast_frame.9.png ├── drawable-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_odoo.png ├── drawable │ ├── background_left.xml │ ├── background_right.xml │ ├── button.xml │ ├── button_bg_user_group_join.xml │ ├── button_bg_user_group_unjoin.xml │ ├── button_group_join_focused.xml │ ├── button_group_join_pressed.xml │ ├── button_group_unjoin_focused.xml │ ├── button_group_unjoin_pressed.xml │ ├── circle_mask.xml │ ├── container_drop_shadow.xml │ ├── dialog_bg.xml │ ├── drawer_item_focused.xml │ ├── drawer_item_pressed.xml │ ├── drawer_item_selector.xml │ ├── listitem_focused.xml │ ├── listitem_pressed.xml │ ├── login_signup_button.xml │ ├── login_signup_button_clicked.xml │ ├── login_signup_button_normal.xml │ ├── login_signup_control_bg.xml │ ├── mail_detail_control_bg.xml │ ├── menu_counter_tag.xml │ ├── message_item_read.xml │ ├── message_item_unread.xml │ ├── message_listview_bg_tonotread_selector.xml │ ├── message_listview_bg_toread_selector.xml │ ├── message_profile_pic.xml │ ├── name_bg_shade.xml │ ├── note_container_drop_shadow.xml │ ├── note_quick_text_background.xml │ ├── oe_background_selector.xml │ ├── oe_listview_background_selector.xml │ ├── solid_white.xml │ ├── tag_style.xml │ ├── two_pane_shadow.xml │ ├── vote_background_selector_gray.xml │ ├── vote_item_focused_gray.xml │ ├── vote_item_pressed_gray.xml │ ├── vote_solid_gray.xml │ └── widget_style.xml ├── layout-land │ └── base_login_signup_layout.xml ├── layout-large-land │ └── activity_main.xml ├── layout │ ├── activity_mail_compose_attachment_file_view_item.xml │ ├── activity_mail_compose_attachment_grid.xml │ ├── activity_main.xml │ ├── activity_user_profile.xml │ ├── base_about.xml │ ├── base_account_list.xml │ ├── base_account_row_item.xml │ ├── base_account_user_profile.xml │ ├── base_dialog_layout.xml │ ├── base_drawer_item_group_layout.xml │ ├── base_drawer_item_layout.xml │ ├── base_login_signup_account_create_layout.xml │ ├── base_login_signup_instance_view.xml │ ├── base_login_signup_layout.xml │ ├── base_login_signup_sync_wizard.xml │ ├── base_navdrawer_account_list_item.xml │ ├── base_navdrawer_account_options.xml │ ├── base_navdrawer_content.xml │ ├── base_navdrawer_for_ab_overlay.xml │ ├── base_navdrawer_item.xml │ ├── base_navdrawer_separator.xml │ ├── base_setting_activity.xml │ ├── custom_like_layout.xml │ ├── groups.xml │ ├── groups_list_item.xml │ ├── like_layout.xml │ ├── listview_data_loading_progress.xml │ ├── mail.xml │ ├── mail_compose.xml │ ├── mail_compose_attachment.xml │ ├── mail_compose_attachment_item.xml │ ├── mail_detail_layout.xml │ ├── mail_detail_list_attachment.xml │ ├── mail_detail_parent_list_item.xml │ ├── mail_detail_reply_list_item.xml │ ├── mail_empty_view.xml │ ├── mail_list_item.xml │ ├── message_detail_to_layout.xml │ ├── partners_contacts.xml │ ├── spinner_custom_layout.xml │ ├── undo_bar.xml │ ├── widget_mail_configure_layout.xml │ ├── widget_mail_item_layout.xml │ └── widget_mail_layout.xml ├── menu │ ├── main_menu_drawer_open.xml │ ├── menu_fragment_all_accounts.xml │ ├── menu_fragment_sync_wizard.xml │ ├── menu_mail.xml │ ├── menu_mail_compose.xml │ ├── menu_mail_detail.xml │ └── menu_user_profile.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v14 │ ├── dimens.xml │ ├── refs.xml │ ├── strings.xml │ └── styles.xml ├── values-v19 │ ├── dimens.xml │ ├── drawables.xml │ ├── refs.xml │ ├── strings.xml │ └── styles.xml ├── values-v21 │ ├── strings.xml │ └── styles.xml ├── values-w820dp │ └── dimens.xml ├── values │ ├── attrs.xml │ ├── base-strings.xml │ ├── colors.xml │ ├── dimens.xml │ ├── drawables.xml │ ├── fonts.xml │ ├── integers.xml │ ├── pull_refresh_strings.xml │ ├── refs.xml │ ├── strings.xml │ └── styles.xml └── xml │ ├── authenticator.xml │ ├── base_preference.xml │ ├── contacts.xml │ ├── sync_contacts.xml │ ├── sync_mail.xml │ ├── sync_mailgroup.xml │ └── widget_mail.xml └── src ├── com └── odoo │ ├── App.java │ ├── BaseActivity.java │ ├── BaseSettings.java │ ├── MainActivity.java │ ├── SettingActivity.java │ ├── addons │ └── mail │ │ ├── ComposeMail.java │ │ ├── Groups.java │ │ ├── Mail.java │ │ ├── MailDetail.java │ │ ├── VoterDialog.java │ │ ├── models │ │ ├── MailGroup.java │ │ ├── MailMessage.java │ │ └── MailNotification.java │ │ ├── providers │ │ ├── group │ │ │ └── MailGroupProvider.java │ │ ├── mail │ │ │ └── MailProvider.java │ │ └── notification │ │ │ └── MailNotificationProvider.java │ │ ├── services │ │ ├── MailGroupSyncService.java │ │ └── MailSyncService.java │ │ └── widgets │ │ ├── MailRemoteViewFactory.java │ │ ├── MailRemoteViewService.java │ │ ├── MailWidget.java │ │ └── MailWidgetConfigure.java │ ├── auth │ ├── OdooAccountManager.java │ ├── OdooAuthenticateService.java │ └── OdooAuthenticator.java │ ├── base │ ├── about │ │ └── About.java │ ├── account │ │ ├── AccountsDetail.java │ │ ├── BaseAccount.java │ │ └── UserProfile.java │ ├── ir │ │ ├── AttachmentDepricated.java │ │ ├── Attachments.java │ │ ├── IrAttachment.java │ │ ├── IrModel.java │ │ ├── IrModelFields.java │ │ └── providers │ │ │ ├── attachments │ │ │ └── AttachmentProvider.java │ │ │ └── model │ │ │ └── ModelProvider.java │ ├── login_signup │ │ ├── AccountCreate.java │ │ ├── LoginSignup.java │ │ └── SyncWizard.java │ ├── mail │ │ ├── MailFollowers.java │ │ └── provider │ │ │ └── MailFollowerProvider.java │ └── res │ │ ├── ResCompany.java │ │ ├── ResCountry.java │ │ ├── ResPartner.java │ │ ├── ResUsers.java │ │ ├── providers │ │ ├── company │ │ │ └── CompanyProvider.java │ │ ├── country │ │ │ └── CountryProvider.java │ │ ├── partners │ │ │ └── PartnersProvider.java │ │ └── users │ │ │ └── UsersProvider.java │ │ └── services │ │ └── ContactSyncService.java │ ├── config │ ├── OModules.java │ └── SyncWizardValues.java │ ├── orm │ ├── OColumn.java │ ├── OContentResolver.java │ ├── ODataRow.java │ ├── OFieldsHelper.java │ ├── OM2MRecord.java │ ├── OM2ORecord.java │ ├── OModel.java │ ├── OO2MRecord.java │ ├── ORelIds.java │ ├── ORelationRecordList.java │ ├── OSQLHelper.java │ ├── OSQLiteHelper.java │ ├── OSyncHelper.java │ ├── OValues.java │ ├── OdooHelper.java │ ├── SelectionBuilder.java │ ├── ServerDataHelper.java │ ├── annotations │ │ └── Odoo.java │ ├── sql │ │ ├── OQuery.java │ │ ├── OWhere.java │ │ └── RelationColumnAlias.java │ └── types │ │ ├── OBlob.java │ │ ├── OBoolean.java │ │ ├── ODateTime.java │ │ ├── OHtml.java │ │ ├── OInteger.java │ │ ├── OReal.java │ │ ├── OText.java │ │ ├── OTimestamp.java │ │ ├── OTypeHelper.java │ │ └── OVarchar.java │ ├── receivers │ ├── DataSetChangeReceiver.java │ └── SyncFinishReceiver.java │ ├── support │ ├── AppScope.java │ ├── FragmentHandler.java │ ├── JSONDataHelper.java │ ├── ODialog.java │ ├── OExceptionDialog.java │ ├── OModule.java │ ├── OModulesHelper.java │ ├── OUser.java │ ├── OdooServerConnection.java │ ├── SyncValue.java │ ├── SyncWizardHelper.java │ ├── contact │ │ └── OContact.java │ ├── fragment │ │ ├── AsyncTaskListener.java │ │ ├── BaseFragment.java │ │ ├── FragmentListener.java │ │ ├── OModuleHelper.java │ │ ├── OnSearchViewChangeListener.java │ │ └── SyncStatusObserverListener.java │ ├── listview │ │ ├── OCursorListAdapter.java │ │ ├── OListAdapter.java │ │ └── OListDataAdapter.java │ ├── provider │ │ ├── OContentProvider.java │ │ └── OContentProviderHelper.java │ └── service │ │ ├── OService.java │ │ ├── OServiceListener.java │ │ ├── OSyncAdapter.java │ │ ├── OSyncFinishListener.java │ │ ├── OSyncService.java │ │ └── OSyncServiceListener.java │ ├── util │ ├── Base64Helper.java │ ├── BitmapUtils.java │ ├── CursorUtil.java │ ├── HTMLHelper.java │ ├── JSONUtils.java │ ├── OAppRater.java │ ├── OControls.java │ ├── ODate.java │ ├── OEViewHandler.java │ ├── OFileSizeHelper.java │ ├── ONotificationHelper.java │ ├── PreferenceManager.java │ ├── StringUtils.java │ ├── TextViewTags.java │ ├── Utils.java │ ├── Validator.java │ ├── contactview │ │ └── OContactView.java │ ├── controls │ │ └── ExpandableHeightGridView.java │ ├── dialog │ │ └── MaterialDialog.java │ ├── drawer │ │ ├── DrawerColorTagListener.java │ │ ├── DrawerHelper.java │ │ ├── DrawerItem.java │ │ └── DrawerListener.java │ ├── logger │ │ └── OLog.java │ └── notification │ │ └── NotificationBuilder.java │ └── widgets │ └── WidgetHelper.java └── odoo └── controls ├── BezelImageView.java ├── MultiTagsTextView.java ├── OControlAttributes.java ├── OControlHelper.java ├── OField.java ├── OForm.java ├── OLabel.java ├── OList.java ├── OListDragDropListener.java ├── OManyToOneWidget.java ├── OSearchableMany2One.java ├── OTagsView.java ├── OViewPager.java ├── OViewPagerObjectListener.java ├── OWebTextView.java ├── OnChangeCallback.java ├── OnDomainFilterCallbacks.java ├── fab ├── DirectionScrollListener.java └── FloatingActionButton.java └── undobar ├── MaxWidthLinearLayout.java ├── UndoBar.java └── UndoBarView.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Odoo Mobile Messaging Client v2.0 2 | ================================= 3 | 4 | Odoo Mobile Client is Enterprise Social Client based on Android, enables you to access your Odoo Wall Messages from inbox and groups, encourage you to updated with companies' current activities for which you are responsible. 5 |
6 | 7 |
8 |
9 | 10 | Android app on Google Play 12 | 13 |
14 |
15 | 16 | Odoo Instace 17 | 18 |
19 |
20 | 21 | Major Features : 22 | 23 | - Offline Access 24 | - Multiple Account Support 25 | - Message with multiple file attachment. 26 | - Odoo Instances (saas) Login 27 | 28 | Supported Odoo Version: Odoo 7.0+ 29 | 30 | Write Feedback on : mobile@openerp.co.in 31 | 32 | Download from PlayStore : https://play.google.com/store/apps/details?id=com.odoo 33 | -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /libs/odoo-v2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/libs/odoo-v2.jar -------------------------------------------------------------------------------- /libs/swipe_library.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/libs/swipe_library.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-21 15 | android.library.reference.1=../../workspace/appcompat_v7 16 | android.library.reference.2=../../../eclipse-adt/sdk/extras/google/google_play_services/libproject/google-play-services_lib 17 | -------------------------------------------------------------------------------- /res/color/drawer_counter_textview_color_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/color/drawer_imageview_tint_color_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/color/drawer_textview_color_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable-hdpi/actionbar_bottom_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/actionbar_bottom_border.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/card.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/caret_grey.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/caret_grey.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_about.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_accounts.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_add_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_add_account.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_add_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_add_users.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_alerts_and_states_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_alerts_and_states_warning.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_archive.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_arrow_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_arrow_next.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_arrow_right_hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_arrow_right_hi.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_attachment.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_briefcase.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_clipboard.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_company.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_content_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_content_attachment.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_content_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_content_new.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_content_new_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_content_new_attachment.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_content_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_content_remove.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_database.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_done.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_exclamation_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_exclamation_mark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_inbox.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_location_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_location_web.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_lock.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_logout.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_mail_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_mail_add.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_mail_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_mail_compose.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_mark_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_mark_read.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_mark_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_mark_unread.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_meeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_meeting.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_more.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_new_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_new_note.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_notes.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_rating_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_rating_bad.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_rating_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_rating_good.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_rating_good_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_rating_good_blue.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_rating_good_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_rating_good_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_rating_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_rating_important.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_rating_not_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_rating_not_important.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_remove.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_reply.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_resize.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_send_now.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_settings.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_social_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_social_group.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_social_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_social_person.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_social_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_social_reply.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_speech_to_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_speech_to_text.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_star.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_star_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_star_blue.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_star_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_star_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_starred.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_suppliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_suppliers.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_sync.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_todo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_unsent_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_unsent_mail.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_unstarred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_unstarred.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_user.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_user_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_user_dp.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_vote_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_vote_empty.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_vote_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_action_vote_filled.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_odoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_launcher_odoo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu__discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu__discard.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_action_content_new_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_action_content_new_attachment.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_add_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_add_group.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_archive_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_archive_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_edit.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_forward.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_inbox_main_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_inbox_main_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_navigation_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_navigation_back.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_new_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_new_plus.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_notes.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_right_arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_save.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_menu_share.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_navigation_drawer.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_odoo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_odoo_o.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_odoo_o_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_odoo_o_purple.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_rating_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_rating_important.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_rating_not_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_rating_not_important.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_star_not_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_star_not_selected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_star_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_star_selected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_stat_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_stat_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_thumbs_up_selected_dark_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_thumbs_up_selected_dark_tablet.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_thumbs_up_unselected_dark_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ic_thumbs_up_unselected_dark_tablet.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ptr_progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ptr_progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ptr_progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ptr_progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ptr_progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/ptr_progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-hdpi/toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-land/listitem_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/drawable-land/oe_listview_background_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable-ldpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-ldpi/toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/account_continue_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/account_continue_button.png -------------------------------------------------------------------------------- /res/drawable-mdpi/actionbar_bottom_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/actionbar_bottom_border.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/card.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/caret_grey.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/caret_grey.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_about.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_accounts.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_add_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_add_account.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_add_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_add_users.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_alerts_and_states_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_alerts_and_states_warning.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_archive.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_arrow_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_arrow_next.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_arrow_right_hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_arrow_right_hi.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_attachment.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_briefcase.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_clipboard.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_company.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_content_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_content_attachment.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_content_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_content_new.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_content_new_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_content_new_attachment.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_content_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_content_remove.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_database.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_done.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_exclamation_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_exclamation_mark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_inbox.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_location_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_location_web.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_lock.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_logout.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_mail_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_mail_add.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_mail_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_mail_compose.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_mark_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_mark_read.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_mark_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_mark_unread.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_meeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_meeting.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_more.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_new_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_new_note.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_notes.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_rating_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_rating_bad.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_rating_filled_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_rating_filled_small.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_rating_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_rating_good.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_rating_good_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_rating_good_blue.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_rating_good_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_rating_good_white.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_rating_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_rating_important.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_rating_not_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_rating_not_important.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_remove.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_reply.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_resize.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_send_now.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_settings.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_social_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_social_group.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_social_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_social_person.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_social_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_social_reply.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_speech_to_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_speech_to_text.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_star.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_star_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_star_blue.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_star_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_star_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_starred.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_suppliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_suppliers.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_sync.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_todo.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_unsent_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_unsent_mail.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_unstarred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_unstarred.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_user.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_user_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_user_dp.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_vote_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_vote_empty.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_vote_empty_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_vote_empty_small.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_vote_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_action_vote_filled.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_odoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_launcher_odoo.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu__discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu__discard.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_action_content_new_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_action_content_new_attachment.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_add_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_add_group.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_archive_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_archive_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_edit.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_forward.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_inbox_main_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_inbox_main_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_navigation_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_navigation_back.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_new_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_new_plus.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_notes.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_right_arrow.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_save.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_menu_share.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_navigation_drawer.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_odoo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_odoo_o.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_odoo_o_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_odoo_o_purple.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_rating_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_rating_important.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_rating_not_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_rating_not_important.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_star_not_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_star_not_selected.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_star_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_star_selected.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_stat_av_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_stat_av_download.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_stat_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_stat_refresh.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_thumbs_up_selected_dark_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_thumbs_up_selected_dark_tablet.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_thumbs_up_unselected_dark_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ic_thumbs_up_unselected_dark_tablet.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progressbar_indeterminate_holo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progressbar_indeterminate_holo1.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progressbar_indeterminate_holo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progressbar_indeterminate_holo2.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progressbar_indeterminate_holo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progressbar_indeterminate_holo3.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progressbar_indeterminate_holo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progressbar_indeterminate_holo4.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progressbar_indeterminate_holo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progressbar_indeterminate_holo5.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progressbar_indeterminate_holo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progressbar_indeterminate_holo6.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progressbar_indeterminate_holo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progressbar_indeterminate_holo7.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ptr_progressbar_indeterminate_holo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/ptr_progressbar_indeterminate_holo8.png -------------------------------------------------------------------------------- /res/drawable-mdpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-mdpi/toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-nodpi/actionbar_bottom_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-nodpi/actionbar_bottom_border.9.png -------------------------------------------------------------------------------- /res/drawable-nodpi/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-nodpi/attachment.png -------------------------------------------------------------------------------- /res/drawable-nodpi/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-nodpi/avatar.png -------------------------------------------------------------------------------- /res/drawable-nodpi/default_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-nodpi/default_cover.png -------------------------------------------------------------------------------- /res/drawable-nodpi/file_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-nodpi/file_attachment.png -------------------------------------------------------------------------------- /res/drawable-nodpi/odoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-nodpi/odoo.png -------------------------------------------------------------------------------- /res/drawable-nodpi/odoo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-nodpi/odoo_small.png -------------------------------------------------------------------------------- /res/drawable-nodpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-nodpi/widget_preview.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/account_continue_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/account_continue_button.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/actionbar_bottom_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/actionbar_bottom_border.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/button_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/button_focused.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/button_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/button_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/card.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/caret_grey.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/caret_grey.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_about.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_accounts.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_add_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_add_account.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_add_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_add_users.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_alerts_and_states_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_alerts_and_states_warning.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_archive.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_arrow_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_arrow_next.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_arrow_right_hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_arrow_right_hi.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_attachment.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_briefcase.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_clipboard.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_company.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_content_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_content_attachment.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_content_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_content_new.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_content_new_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_content_new_attachment.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_content_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_content_remove.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_database.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_done.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_exclamation_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_exclamation_mark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_inbox.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_location_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_location_web.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_lock.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_logout.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_mail_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_mail_add.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_mail_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_mail_compose.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_mark_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_mark_read.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_mark_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_mark_unread.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_meeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_meeting.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_more.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_new_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_new_note.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_notes.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_rating_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_rating_bad.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_rating_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_rating_good.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_rating_good_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_rating_good_blue.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_rating_good_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_rating_good_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_rating_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_rating_important.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_rating_not_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_rating_not_important.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_reply.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_resize.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_send_now.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_social_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_social_group.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_social_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_social_person.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_social_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_social_reply.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_speech_to_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_speech_to_text.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_star.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_star_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_star_blue.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_star_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_star_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_starred.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_suppliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_suppliers.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_sync.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_todo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_unsent_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_unsent_mail.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_unstarred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_unstarred.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_user.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_user_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_user_dp.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_vote_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_vote_empty.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_vote_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_action_vote_filled.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher_odoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_launcher_odoo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu__discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu__discard.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_action_content_new_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_action_content_new_attachment.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_add_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_add_group.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_archive_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_archive_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_edit.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_forward.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_inbox_main_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_inbox_main_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_navigation_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_navigation_back.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_new_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_new_plus.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_notes.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_right_arrow.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_save.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_menu_share.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_navigation_drawer.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_odoo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_odoo_o.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_odoo_o_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_odoo_o_purple.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_rating_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_rating_important.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_rating_not_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_rating_not_important.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_star_not_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_star_not_selected.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_star_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_star_selected.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_stat_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_stat_refresh.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_thumbs_up_selected_dark_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_thumbs_up_selected_dark_tablet.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_thumbs_up_unselected_dark_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ic_thumbs_up_unselected_dark_tablet.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ptr_progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ptr_progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ptr_progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ptr_progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ptr_progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/ptr_progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xhdpi/toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/account_continue_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/account_continue_button.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/actionbar_bottom_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/actionbar_bottom_border.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/card.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/caret_grey.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/caret_grey.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_about.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_accounts.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_add_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_add_account.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_add_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_add_users.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_alerts_and_states_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_alerts_and_states_warning.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_archive.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_arrow_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_arrow_next.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_arrow_right_hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_arrow_right_hi.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_attachment.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_briefcase.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_clipboard.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_company.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_content_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_content_attachment.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_content_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_content_new.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_content_new_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_content_new_attachment.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_content_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_content_remove.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_database.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_done.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_exclamation_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_exclamation_mark.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_inbox.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_location_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_location_web.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_lock.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_logout.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_mail_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_mail_add.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_mail_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_mail_compose.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_mark_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_mark_read.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_mark_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_mark_unread.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_more.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_notes.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_rating_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_rating_bad.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_rating_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_rating_good.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_rating_good_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_rating_good_blue.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_rating_good_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_rating_good_white.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_rating_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_rating_important.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_rating_not_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_rating_not_important.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_resize.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_send_now.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_social_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_social_group.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_social_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_social_person.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_social_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_social_reply.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_speech_to_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_speech_to_text.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_star.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_star_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_star_blue.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_starred.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_suppliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_suppliers.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_sync.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_todo.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_unsent_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_unsent_mail.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_unstarred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_unstarred.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_user.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_user_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_user_dp.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_vote_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_vote_empty.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_vote_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_action_vote_filled.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_drawer_accounts_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_drawer_accounts_collapse.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_drawer_accounts_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_drawer_accounts_expand.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher_odoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_launcher_odoo.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu__discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu__discard.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_action_content_new_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_action_content_new_attachment.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_add_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_add_group.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_archive_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_archive_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_edit.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_forward.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_inbox_main_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_inbox_main_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_navigation_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_navigation_back.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_new_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_new_plus.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_notes.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_right_arrow.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_save.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_menu_share.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_navigation_drawer.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_odoo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_odoo_o.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_odoo_o_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_odoo_o_purple.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_rating_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_rating_important.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_rating_not_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_rating_not_important.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_star_not_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_star_not_selected.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_star_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_star_selected.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_stat_av_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_stat_av_download.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_thumbs_up_selected_dark_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_thumbs_up_selected_dark_tablet.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_thumbs_up_unselected_dark_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ic_thumbs_up_unselected_dark_tablet.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo1.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo2.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo3.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo4.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo5.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo6.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo7.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/ptr_progressbar_indeterminate_holo8.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxhdpi/toast_frame.9.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/ic_launcher_odoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odoo-mobile/messaging/0fc384ef747802516e65fe848c4aab8212abc3bd/res/drawable-xxxhdpi/ic_launcher_odoo.png -------------------------------------------------------------------------------- /res/drawable/background_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /res/drawable/background_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /res/drawable/button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/button_bg_user_group_join.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/button_bg_user_group_unjoin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/button_group_join_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/button_group_join_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/button_group_unjoin_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/button_group_unjoin_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/circle_mask.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/drawer_item_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/drawer_item_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/drawer_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/listitem_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/listitem_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/login_signup_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/login_signup_button_clicked.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/drawable/login_signup_button_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /res/drawable/login_signup_control_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/drawable/mail_detail_control_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /res/drawable/menu_counter_tag.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/message_item_read.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/message_item_unread.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/message_listview_bg_tonotread_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/message_listview_bg_toread_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/message_profile_pic.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/name_bg_shade.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/note_quick_text_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/drawable/oe_background_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/oe_listview_background_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/solid_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/tag_style.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/two_pane_shadow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /res/drawable/vote_background_selector_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/vote_item_focused_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable/vote_item_pressed_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable/vote_solid_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable/widget_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 12 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /res/layout/activity_mail_compose_attachment_grid.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 13 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /res/layout/base_account_list.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /res/layout/base_drawer_item_group_layout.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 20 | 21 | -------------------------------------------------------------------------------- /res/layout/base_navdrawer_account_options.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 16 | 17 | -------------------------------------------------------------------------------- /res/layout/base_navdrawer_for_ab_overlay.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /res/layout/base_navdrawer_separator.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 18 | 19 | 25 | 26 | -------------------------------------------------------------------------------- /res/layout/base_setting_activity.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | -------------------------------------------------------------------------------- /res/layout/custom_like_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 17 | 18 | 27 | 28 | -------------------------------------------------------------------------------- /res/layout/like_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /res/layout/listview_data_loading_progress.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /res/layout/message_detail_to_layout.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /res/layout/spinner_custom_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /res/layout/undo_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 14 | 15 | 16 | 17 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /res/layout/widget_mail_configure_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /res/menu/main_menu_drawer_open.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/menu/menu_fragment_all_accounts.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/menu/menu_fragment_sync_wizard.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/menu/menu_mail.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 20 | 21 | -------------------------------------------------------------------------------- /res/menu/menu_mail_compose.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 9 | 10 | 14 | 15 | 19 | 20 | 21 | 22 | 28 | 29 | -------------------------------------------------------------------------------- /res/menu/menu_mail_detail.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /res/menu/menu_user_profile.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | -------------------------------------------------------------------------------- /res/values-v14/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0dp 4 | 5 | -------------------------------------------------------------------------------- /res/values-v14/refs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0dp 4 | 5 | -------------------------------------------------------------------------------- /res/values-v14/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | -------------------------------------------------------------------------------- /res/values-v19/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 48dp 5 | 6 | -------------------------------------------------------------------------------- /res/values-v19/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @android:color/transparent 5 | @drawable/background_left 6 | @drawable/background_right 7 | @android:color/transparent 8 | 9 | -------------------------------------------------------------------------------- /res/values-v19/refs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 25dip 4 | 5 | -------------------------------------------------------------------------------- /res/values-v19/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | 5 | -------------------------------------------------------------------------------- /res/values-v21/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | 6 | -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @drawable/toast_frame 5 | @android:color/transparent 6 | @android:color/transparent 7 | @drawable/button 8 | 9 | -------------------------------------------------------------------------------- /res/values/fonts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | sans-serif 5 | sans-serif-light 6 | sans-serif-condensed 7 | 8 | 0 9 | sans-serif 10 | 11 | -------------------------------------------------------------------------------- /res/values/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/values/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pull to sync… 5 | Release to refresh… 6 | Synchronizing… 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/values/refs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0dp 4 | -------------------------------------------------------------------------------- /res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /res/xml/contacts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | -------------------------------------------------------------------------------- /res/xml/sync_contacts.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /res/xml/sync_mail.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /res/xml/sync_mailgroup.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/xml/widget_mail.xml: -------------------------------------------------------------------------------- 1 | 12 | 13 | -------------------------------------------------------------------------------- /src/com/odoo/SettingActivity.java: -------------------------------------------------------------------------------- 1 | package com.odoo; 2 | 3 | import android.content.Intent; 4 | import android.graphics.drawable.ColorDrawable; 5 | import android.os.Bundle; 6 | import android.support.v7.app.ActionBarActivity; 7 | 8 | import com.odoo.base.about.About; 9 | 10 | public class SettingActivity extends ActionBarActivity { 11 | public static final String ACTION_ABOUT = "com.odoo.ACTION_ABOUT"; 12 | 13 | @Override 14 | protected void onCreate(Bundle savedInstanceState) { 15 | super.onCreate(savedInstanceState); 16 | setContentView(R.layout.base_setting_activity); 17 | getSupportActionBar().setBackgroundDrawable( 18 | new ColorDrawable(getResources() 19 | .getColor(R.color.theme_primary))); 20 | } 21 | 22 | @Override 23 | public void startActivity(Intent intent) { 24 | if (intent.getAction() != null 25 | && intent.getAction().equals(ACTION_ABOUT)) { 26 | Intent about = new Intent(this, About.class); 27 | super.startActivity(about); 28 | return; 29 | } 30 | super.startActivity(intent); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/com/odoo/addons/mail/providers/group/MailGroupProvider.java: -------------------------------------------------------------------------------- 1 | package com.odoo.addons.mail.providers.group; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.addons.mail.models.MailGroup; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.support.provider.OContentProvider; 9 | 10 | public class MailGroupProvider extends OContentProvider { 11 | 12 | public static String AUTHORITY = "com.odoo.addons.mail.providers.group"; 13 | public static String PATH = "mail_group"; 14 | public static Uri CONTENT_URI = OContentProvider.buildURI(AUTHORITY, PATH); 15 | 16 | @Override 17 | public String authority() { 18 | return MailGroupProvider.AUTHORITY; 19 | } 20 | 21 | @Override 22 | public OModel model(Context context) { 23 | return new MailGroup(context); 24 | } 25 | 26 | @Override 27 | public String path() { 28 | return MailGroupProvider.PATH; 29 | } 30 | 31 | @Override 32 | public Uri uri() { 33 | return MailGroupProvider.CONTENT_URI; 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/odoo/addons/mail/providers/notification/MailNotificationProvider.java: -------------------------------------------------------------------------------- 1 | package com.odoo.addons.mail.providers.notification; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.addons.mail.models.MailNotification; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.support.provider.OContentProvider; 9 | 10 | public class MailNotificationProvider extends OContentProvider { 11 | 12 | public static String AUTHORITY = "com.odoo.addons.mail.providers.notification"; 13 | public static String PATH = "mail_notification"; 14 | public static Uri CONTENT_URI = OContentProvider.buildURI(AUTHORITY, PATH); 15 | 16 | @Override 17 | public String authority() { 18 | return MailNotificationProvider.AUTHORITY; 19 | } 20 | 21 | @Override 22 | public OModel model(Context context) { 23 | return new MailNotification(context); 24 | } 25 | 26 | @Override 27 | public String path() { 28 | return MailNotificationProvider.PATH; 29 | } 30 | 31 | @Override 32 | public Uri uri() { 33 | return MailNotificationProvider.CONTENT_URI; 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/odoo/addons/mail/widgets/MailRemoteViewService.java: -------------------------------------------------------------------------------- 1 | package com.odoo.addons.mail.widgets; 2 | 3 | import android.content.Intent; 4 | import android.util.Log; 5 | import android.widget.RemoteViewsService; 6 | 7 | public class MailRemoteViewService extends RemoteViewsService { 8 | public static final String TAG = "com.odoo.addons.mail.widgets.MailRemoteViewService"; 9 | 10 | @Override 11 | public RemoteViewsFactory onGetViewFactory(Intent intent) { 12 | Log.d(TAG, "MessageRemoteViewService->onGetViewFactory()"); 13 | MailRemoteViewFactory rvFactory = new MailRemoteViewFactory( 14 | this.getApplicationContext(), intent); 15 | return rvFactory; 16 | 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/com/odoo/base/account/BaseAccount.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.account; 2 | 3 | import android.content.Context; 4 | 5 | import com.odoo.orm.OColumn; 6 | import com.odoo.orm.OModel; 7 | import com.odoo.orm.types.OBlob; 8 | import com.odoo.orm.types.OBoolean; 9 | import com.odoo.orm.types.OVarchar; 10 | 11 | public class BaseAccount extends OModel { 12 | 13 | OColumn name = new OColumn("Name", OVarchar.class).setLocalColumn(); 14 | OColumn image = new OColumn("Image", OBlob.class).setLocalColumn(); 15 | OColumn host = new OColumn("Name", OVarchar.class).setLocalColumn(); 16 | OColumn is_active = new OColumn("Name", OBoolean.class).setLocalColumn(); 17 | 18 | public BaseAccount(Context context) { 19 | super(context, "base.account"); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/com/odoo/base/ir/providers/attachments/AttachmentProvider.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.ir.providers.attachments; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.base.ir.IrAttachment; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.support.provider.OContentProvider; 9 | 10 | public class AttachmentProvider extends OContentProvider { 11 | public static final String AUTHORITY = "com.odoo.mail.base.ir.providers.attachments"; 12 | public static final String PATH = "ir_attachment"; 13 | public static final Uri CONTENT_URI = OContentProvider.buildURI(AUTHORITY, 14 | PATH); 15 | 16 | @Override 17 | public String authority() { 18 | return AttachmentProvider.AUTHORITY; 19 | } 20 | 21 | @Override 22 | public String path() { 23 | return AttachmentProvider.PATH; 24 | } 25 | 26 | @Override 27 | public Uri uri() { 28 | return AttachmentProvider.CONTENT_URI; 29 | } 30 | 31 | @Override 32 | public OModel model(Context context) { 33 | return new IrAttachment(context); 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/odoo/base/ir/providers/model/ModelProvider.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.ir.providers.model; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.base.ir.IrModel; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.support.provider.OContentProvider; 9 | 10 | public class ModelProvider extends OContentProvider { 11 | public static final String AUTHORITY = "com.odoo.mail.base.ir.providers.model"; 12 | public static final String PATH = "ir_model"; 13 | public static final Uri CONTENT_URI = OContentProvider.buildURI(AUTHORITY, 14 | PATH); 15 | 16 | @Override 17 | public OModel model(Context context) { 18 | return new IrModel(context); 19 | } 20 | 21 | @Override 22 | public String authority() { 23 | return ModelProvider.AUTHORITY; 24 | } 25 | 26 | @Override 27 | public String path() { 28 | return ModelProvider.PATH; 29 | } 30 | 31 | @Override 32 | public Uri uri() { 33 | return ModelProvider.CONTENT_URI; 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/odoo/base/mail/provider/MailFollowerProvider.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.mail.provider; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.base.mail.MailFollowers; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.support.provider.OContentProvider; 9 | 10 | public class MailFollowerProvider extends OContentProvider { 11 | 12 | public static String AUTHORITY = "com.odoo.base.mail.provider.mailfollower"; 13 | public static String PATH = "mail_follower"; 14 | public static Uri CONTENT_URI = OContentProvider.buildURI(AUTHORITY, PATH); 15 | 16 | @Override 17 | public OModel model(Context context) { 18 | return new MailFollowers(context); 19 | } 20 | 21 | @Override 22 | public String authority() { 23 | return MailFollowerProvider.AUTHORITY; 24 | } 25 | 26 | @Override 27 | public String path() { 28 | return MailFollowerProvider.PATH; 29 | } 30 | 31 | @Override 32 | public Uri uri() { 33 | return MailFollowerProvider.CONTENT_URI; 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/odoo/base/res/ResCountry.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.res; 2 | 3 | import android.content.Context; 4 | 5 | import com.odoo.base.res.providers.country.CountryProvider; 6 | import com.odoo.orm.OColumn; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.orm.types.OVarchar; 9 | import com.odoo.support.provider.OContentProvider; 10 | 11 | public class ResCountry extends OModel { 12 | 13 | OColumn name = new OColumn("Name", OVarchar.class); 14 | 15 | public ResCountry(Context context) { 16 | super(context, "res.country"); 17 | } 18 | 19 | @Override 20 | public OContentProvider getContentProvider() { 21 | return new CountryProvider(); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/odoo/base/res/ResUsers.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.res; 2 | 3 | import android.content.Context; 4 | 5 | import com.odoo.base.res.providers.users.UsersProvider; 6 | import com.odoo.orm.OColumn; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.orm.types.OVarchar; 9 | import com.odoo.support.provider.OContentProvider; 10 | 11 | public class ResUsers extends OModel { 12 | 13 | OColumn name = new OColumn("Name", OVarchar.class, 64); 14 | OColumn login = new OColumn("User Login name", OVarchar.class, 64); 15 | 16 | public ResUsers(Context context) { 17 | super(context, "res.users"); 18 | } 19 | 20 | @Override 21 | public Boolean canUpdateToServer() { 22 | return false; 23 | } 24 | 25 | @Override 26 | public OContentProvider getContentProvider() { 27 | return new UsersProvider(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/com/odoo/base/res/providers/company/CompanyProvider.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.res.providers.company; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.base.res.ResCompany; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.support.provider.OContentProvider; 9 | 10 | public class CompanyProvider extends OContentProvider { 11 | public static final String AUTHORITY = "com.odoo.mail.base.res.providers.company"; 12 | public static final String PATH = "res_company"; 13 | public static final Uri CONTENT_URI = OContentProvider.buildURI(AUTHORITY, 14 | PATH); 15 | 16 | @Override 17 | public OModel model(Context context) { 18 | return new ResCompany(context); 19 | } 20 | 21 | @Override 22 | public String authority() { 23 | return CompanyProvider.AUTHORITY; 24 | } 25 | 26 | @Override 27 | public String path() { 28 | return CompanyProvider.PATH; 29 | } 30 | 31 | @Override 32 | public Uri uri() { 33 | return CompanyProvider.CONTENT_URI; 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/odoo/base/res/providers/country/CountryProvider.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.res.providers.country; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.base.res.ResCountry; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.support.provider.OContentProvider; 9 | 10 | public class CountryProvider extends OContentProvider { 11 | 12 | public static final String AUTHORITY = "com.odoo.mail.base.res.providers.country"; 13 | public static final String PATH = "res_country"; 14 | public static final Uri CONTENT_URI = OContentProvider.buildURI(AUTHORITY, 15 | PATH); 16 | 17 | @Override 18 | public OModel model(Context context) { 19 | return new ResCountry(context); 20 | } 21 | 22 | @Override 23 | public String authority() { 24 | return CountryProvider.AUTHORITY; 25 | } 26 | 27 | @Override 28 | public String path() { 29 | return CountryProvider.PATH; 30 | } 31 | 32 | @Override 33 | public Uri uri() { 34 | return CountryProvider.CONTENT_URI; 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /src/com/odoo/base/res/providers/partners/PartnersProvider.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.res.providers.partners; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.base.res.ResPartner; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.support.provider.OContentProvider; 9 | 10 | public class PartnersProvider extends OContentProvider { 11 | 12 | public static final String AUTHORITY = "com.odoo.mail.base.res.providers.partners"; 13 | public static final String PATH = "res_partner"; 14 | public static final Uri CONTENT_URI = OContentProvider.buildURI(AUTHORITY, 15 | PATH); 16 | 17 | @Override 18 | public OModel model(Context context) { 19 | return new ResPartner(context); 20 | } 21 | 22 | @Override 23 | public String authority() { 24 | return AUTHORITY; 25 | } 26 | 27 | @Override 28 | public String path() { 29 | return PATH; 30 | } 31 | 32 | @Override 33 | public Uri uri() { 34 | return PartnersProvider.CONTENT_URI; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/com/odoo/base/res/providers/users/UsersProvider.java: -------------------------------------------------------------------------------- 1 | package com.odoo.base.res.providers.users; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.base.res.ResUsers; 7 | import com.odoo.orm.OModel; 8 | import com.odoo.support.provider.OContentProvider; 9 | 10 | public class UsersProvider extends OContentProvider { 11 | public static final String AUTHORITY = "com.odoo.mail.base.res.providers.users"; 12 | public static final String PATH = "res_users"; 13 | public static final Uri CONTENT_URI = OContentProvider.buildURI(AUTHORITY, 14 | PATH); 15 | 16 | @Override 17 | public OModel model(Context context) { 18 | return new ResUsers(context); 19 | } 20 | 21 | @Override 22 | public String authority() { 23 | return UsersProvider.AUTHORITY; 24 | } 25 | 26 | @Override 27 | public String path() { 28 | return UsersProvider.PATH; 29 | } 30 | 31 | @Override 32 | public Uri uri() { 33 | return UsersProvider.CONTENT_URI; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/com/odoo/orm/types/OBlob.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.orm.types; 20 | 21 | public class OBlob extends OTypeHelper { 22 | 23 | public static final String KEY = "BLOB"; 24 | 25 | public OBlob() { 26 | mType = OBlob.KEY; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/com/odoo/orm/types/OBoolean.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.orm.types; 20 | 21 | public class OBoolean extends OTypeHelper { 22 | 23 | public static final String KEY = "VARCHAR"; 24 | 25 | public OBoolean() { 26 | mType = OBoolean.KEY; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /src/com/odoo/orm/types/ODateTime.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.orm.types; 20 | 21 | public class ODateTime extends OTypeHelper { 22 | 23 | public static final String KEY = "VARCHAR"; 24 | 25 | public ODateTime(String dateformat) { 26 | mType = ODateTime.KEY; 27 | mPattern = dateformat; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /src/com/odoo/orm/types/OHtml.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.orm.types; 20 | 21 | public class OHtml extends OTypeHelper { 22 | 23 | public static final String KEY = "TEXT"; 24 | 25 | public OHtml() { 26 | mType = OHtml.KEY; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /src/com/odoo/orm/types/OInteger.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.orm.types; 20 | 21 | public class OInteger extends OTypeHelper { 22 | 23 | public static final String KEY = "INTEGER"; 24 | 25 | public OInteger() { 26 | mType = OInteger.KEY; 27 | } 28 | 29 | public OInteger(int size) { 30 | mType = OInteger.KEY; 31 | mSize = size; 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /src/com/odoo/orm/types/OReal.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.orm.types; 20 | 21 | public class OReal extends OTypeHelper { 22 | 23 | public static final String KEY = "REAL"; 24 | 25 | public OReal(int size) { 26 | mType = OReal.KEY; 27 | mSize = size; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /src/com/odoo/orm/types/OText.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.orm.types; 20 | 21 | public class OText extends OTypeHelper { 22 | 23 | public static final String KEY = "TEXT"; 24 | 25 | public OText() { 26 | mType = OText.KEY; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /src/com/odoo/orm/types/OTimestamp.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.orm.types; 20 | 21 | public class OTimestamp extends OTypeHelper { 22 | 23 | public static final String KEY = "VARCHAR"; 24 | 25 | public OTimestamp(String dateformat) { 26 | mType = OTimestamp.KEY; 27 | mPattern = dateformat; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /src/com/odoo/orm/types/OVarchar.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.orm.types; 20 | 21 | public class OVarchar extends OTypeHelper { 22 | 23 | public static final String KEY = "VARCHAR"; 24 | 25 | public OVarchar(int size) { 26 | mType = OVarchar.KEY; 27 | mSize = size; 28 | 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /src/com/odoo/support/SyncWizardHelper.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.support; 20 | 21 | import java.util.List; 22 | 23 | public interface SyncWizardHelper { 24 | public List syncValues(); 25 | } 26 | -------------------------------------------------------------------------------- /src/com/odoo/support/fragment/AsyncTaskListener.java: -------------------------------------------------------------------------------- 1 | package com.odoo.support.fragment; 2 | 3 | public interface AsyncTaskListener { 4 | public Object onPerformTask(); 5 | 6 | public void onFinish(Object result); 7 | } 8 | -------------------------------------------------------------------------------- /src/com/odoo/support/fragment/OnSearchViewChangeListener.java: -------------------------------------------------------------------------------- 1 | package com.odoo.support.fragment; 2 | 3 | public interface OnSearchViewChangeListener { 4 | public boolean onSearchViewTextChange(String newFilter); 5 | 6 | public void onSearchViewClose(); 7 | } 8 | -------------------------------------------------------------------------------- /src/com/odoo/support/fragment/SyncStatusObserverListener.java: -------------------------------------------------------------------------------- 1 | package com.odoo.support.fragment; 2 | 3 | public interface SyncStatusObserverListener { 4 | public void onStatusChange(Boolean refreshing); 5 | } -------------------------------------------------------------------------------- /src/com/odoo/support/provider/OContentProviderHelper.java: -------------------------------------------------------------------------------- 1 | package com.odoo.support.provider; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | 6 | import com.odoo.orm.OModel; 7 | 8 | public interface OContentProviderHelper { 9 | public OModel model(Context context); 10 | 11 | public String authority(); 12 | 13 | public String path(); 14 | 15 | public Uri uri(); 16 | } -------------------------------------------------------------------------------- /src/com/odoo/support/service/OSyncFinishListener.java: -------------------------------------------------------------------------------- 1 | package com.odoo.support.service; 2 | 3 | import android.content.SyncResult; 4 | 5 | public interface OSyncFinishListener { 6 | public OSyncAdapter performSync(SyncResult syncResult); 7 | } 8 | -------------------------------------------------------------------------------- /src/com/odoo/support/service/OSyncServiceListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.support.service; 20 | 21 | import android.os.Bundle; 22 | 23 | import com.odoo.support.OUser; 24 | 25 | public interface OSyncServiceListener { 26 | public OSyncAdapter getSyncAdapter(); 27 | 28 | public void performDataSync(OSyncAdapter adapter, Bundle extras, OUser user); 29 | } 30 | -------------------------------------------------------------------------------- /src/com/odoo/util/BitmapUtils.java: -------------------------------------------------------------------------------- 1 | package com.odoo.util; 2 | 3 | import android.graphics.Bitmap; 4 | 5 | public class BitmapUtils { 6 | public static Bitmap replaceColor(Bitmap src, int fromColor, int targetColor) { 7 | if (src == null) { 8 | return null; 9 | } 10 | // Source image size 11 | int width = src.getWidth(); 12 | int height = src.getHeight(); 13 | int[] pixels = new int[width * height]; 14 | // get pixels 15 | src.getPixels(pixels, 0, width, 0, 0, width, height); 16 | 17 | for (int x = 0; x < pixels.length; ++x) { 18 | pixels[x] = (pixels[x] == fromColor) ? targetColor : pixels[x]; 19 | } 20 | // create result bitmap output 21 | Bitmap result = Bitmap.createBitmap(width, height, src.getConfig()); 22 | // set pixels 23 | result.setPixels(pixels, 0, width, 0, 0, width, height); 24 | 25 | return result; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/odoo/util/CursorUtil.java: -------------------------------------------------------------------------------- 1 | package com.odoo.util; 2 | 3 | import android.database.Cursor; 4 | 5 | import com.odoo.orm.ODataRow; 6 | 7 | public class CursorUtil { 8 | public static ODataRow toDatarow(Cursor cr) { 9 | ODataRow row = new ODataRow(); 10 | for (String col : cr.getColumnNames()) { 11 | row.put(col, CursorUtil.cursorValue(col, cr)); 12 | } 13 | return row; 14 | } 15 | 16 | public static Object cursorValue(String column, Cursor cr) { 17 | Object value = false; 18 | int index = cr.getColumnIndex(column); 19 | switch (cr.getType(index)) { 20 | case Cursor.FIELD_TYPE_NULL: 21 | value = false; 22 | break; 23 | case Cursor.FIELD_TYPE_STRING: 24 | value = cr.getString(index); 25 | break; 26 | case Cursor.FIELD_TYPE_INTEGER: 27 | value = cr.getInt(index); 28 | break; 29 | case Cursor.FIELD_TYPE_FLOAT: 30 | value = cr.getFloat(index); 31 | break; 32 | case Cursor.FIELD_TYPE_BLOB: 33 | value = cr.getBlob(index); 34 | break; 35 | } 36 | return value; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/com/odoo/util/HTMLHelper.java: -------------------------------------------------------------------------------- 1 | package com.odoo.util; 2 | 3 | import android.text.Html; 4 | import android.text.Spanned; 5 | 6 | //TODO: Auto-generated Javadoc 7 | /** 8 | * The Class HTMLHelper. 9 | */ 10 | 11 | public class HTMLHelper { 12 | /** 13 | * Html to string. 14 | * 15 | * @param html 16 | * the html 17 | * @return the string 18 | */ 19 | public static String htmlToString(String html) { 20 | 21 | return Html.fromHtml( 22 | html.replaceAll("\\<.*?\\>", "").replaceAll("\n", "")) 23 | .toString(); 24 | } 25 | 26 | /** 27 | * String to html. 28 | * 29 | * @param string 30 | * the string 31 | * @return the spanned 32 | */ 33 | public static Spanned stringToHtml(String string) { 34 | return Html.fromHtml(string); 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /src/com/odoo/util/Utils.java: -------------------------------------------------------------------------------- 1 | package com.odoo.util; 2 | 3 | public class Utils { 4 | public static Validator validator() { 5 | return new Validator(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/com/odoo/util/Validator.java: -------------------------------------------------------------------------------- 1 | package com.odoo.util; 2 | 3 | import java.util.regex.Matcher; 4 | import java.util.regex.Pattern; 5 | 6 | public class Validator { 7 | private Pattern pattern; 8 | private Matcher matcher; 9 | 10 | private static final String EMAIL_PATTERN = "^[_A-Za-z0-9-\\+]+(\\.[_A-Za-z0-9-]+)*@" 11 | + "[A-Za-z0-9-]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$"; 12 | 13 | public boolean validateEmail(final String hex) { 14 | pattern = Pattern.compile(EMAIL_PATTERN); 15 | matcher = pattern.matcher(hex); 16 | return matcher.matches(); 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/odoo/util/drawer/DrawerColorTagListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.util.drawer; 20 | 21 | public interface DrawerColorTagListener { 22 | public Integer getTagColor(String key); 23 | } 24 | -------------------------------------------------------------------------------- /src/com/odoo/util/drawer/DrawerListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Odoo, Open Source Management Solution 3 | * Copyright (C) 2012-today Odoo SA () 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see 17 | * 18 | */ 19 | package com.odoo.util.drawer; 20 | 21 | public interface DrawerListener { 22 | public void refreshDrawer(String tag_key); 23 | } 24 | -------------------------------------------------------------------------------- /src/odoo/controls/OnChangeCallback.java: -------------------------------------------------------------------------------- 1 | package odoo.controls; 2 | 3 | import com.odoo.orm.ODataRow; 4 | 5 | public interface OnChangeCallback { 6 | public void onValueChange(ODataRow row); 7 | } 8 | -------------------------------------------------------------------------------- /src/odoo/controls/OnDomainFilterCallbacks.java: -------------------------------------------------------------------------------- 1 | package odoo.controls; 2 | 3 | import com.odoo.orm.OColumn.ColumnDomain; 4 | 5 | public interface OnDomainFilterCallbacks { 6 | public void onFieldValueChanged(ColumnDomain domain); 7 | } 8 | --------------------------------------------------------------------------------