├── .gitignore ├── AndroidManifest.xml ├── README ├── aidl ├── android │ └── os │ │ └── Message.aidl └── com │ └── vodafone360 │ └── people │ ├── datatypes │ ├── Identity.aidl │ ├── LoginDetails.aidl │ └── RegistrationDetails.aidl │ ├── engine │ └── presence │ │ ├── NetworkPresence.aidl │ │ └── User.aidl │ └── service │ └── aidl │ ├── IDatabaseSubscriber.aidl │ └── IDatabaseSubscriptionService.aidl ├── default.properties ├── res ├── anim │ ├── context_in_anim.xml │ ├── context_list_in.xml │ ├── context_list_out.xml │ ├── context_out_anim.xml │ └── fadeout_anim.xml ├── color │ ├── contact_detail_text_light.xml │ ├── contact_detail_type_text_light.xml │ ├── group_filter_text_light.xml │ ├── me_profile_background.xml │ ├── people_button_text.xml │ ├── people_edit_text.xml │ ├── people_edit_text_hint.xml │ ├── people_primary_text.xml │ ├── people_primary_text_dark.xml │ ├── people_primary_text_dark_nodisable.xml │ ├── people_primary_text_light_disable_only.xml │ ├── people_primary_text_light_nodisable.xml │ ├── people_secondary_text.xml │ ├── people_secondary_text_dark.xml │ ├── people_secondary_text_dark_nodisable.xml │ ├── people_secondary_text_light_nodisable.xml │ ├── people_tertiary_text.xml │ ├── people_tertiary_text_dark.xml │ ├── privacy_login_text.xml │ ├── status_content_text.xml │ ├── status_date_text.xml │ ├── timeline_content_messagein_text.xml │ ├── timeline_content_messageout_text.xml │ ├── timeline_content_missedcall_text.xml │ ├── timeline_content_text.xml │ └── timeline_date_text.xml ├── drawable │ ├── android_landingpage_blank_320x315.png │ ├── btn_check.xml │ ├── btn_check_label_background.9.png │ ├── btn_default.xml │ ├── btn_dial.xml │ ├── btn_dial_delete.xml │ ├── btn_dial_delete_activated.9.png │ ├── btn_dial_delete_active.xml │ ├── btn_dial_delete_normal.9.png │ ├── btn_dial_delete_pressed.9.png │ ├── btn_dial_delete_selected.9.png │ ├── btn_dial_normal.png │ ├── btn_dial_pressed.png │ ├── btn_dial_selected.png │ ├── btn_dial_textfield.xml │ ├── btn_dial_textfield_activated.9.png │ ├── btn_dial_textfield_active.xml │ ├── btn_dial_textfield_normal.9.png │ ├── btn_dial_textfield_pressed.9.png │ ├── btn_dial_textfield_selected.9.png │ ├── btn_progress.xml │ ├── btn_radio.xml │ ├── btn_radio_label_background.9.png │ ├── btn_radio_off.png │ ├── btn_radio_off_pressed.png │ ├── btn_radio_off_selected.png │ ├── btn_radio_on.png │ ├── btn_radio_on_pressed.png │ ├── btn_radio_on_selected.png │ ├── button_45x45.9.png │ ├── button_click_45x45.9.png │ ├── button_refresh_selector.xml │ ├── button_selected_45x45.9.png │ ├── chat_bubblearrow_highlight_now_1807_10x10.png │ ├── chat_bubblearrow_in_selector.xml │ ├── chat_bubblearrow_me_now_1807_10x10.png │ ├── chat_bubblearrow_me_now_1807_dark_10x10.png │ ├── chat_bubblearrow_now_299_10x10.png │ ├── chat_bubblearrow_now_6_5_10x10.png │ ├── chat_bubblearrow_out_selector.xml │ ├── chat_bubblearrow_press_now_1807_dark_10x10.png │ ├── checkbox_off_30x30.png │ ├── checkbox_on_30x30.png │ ├── contact_avatar_default_40x40_white.png │ ├── contact_avatar_default_blue.png │ ├── contact_detail_divider_horizontal.9.png │ ├── default_15x15.png │ ├── default_15x15_highlight.png │ ├── dial_num_0.xml │ ├── dial_num_0_blk.png │ ├── dial_num_0_wht.png │ ├── dial_num_1.xml │ ├── dial_num_1_blk.png │ ├── dial_num_1_wht.png │ ├── dial_num_2.xml │ ├── dial_num_2_blk.png │ ├── dial_num_2_wht.png │ ├── dial_num_3.xml │ ├── dial_num_3_blk.png │ ├── dial_num_3_wht.png │ ├── dial_num_4.xml │ ├── dial_num_4_blk.png │ ├── dial_num_4_wht.png │ ├── dial_num_5.xml │ ├── dial_num_5_blk.png │ ├── dial_num_5_wht.png │ ├── dial_num_6.xml │ ├── dial_num_6_blk.png │ ├── dial_num_6_wht.png │ ├── dial_num_7.xml │ ├── dial_num_7_blk.png │ ├── dial_num_7_wht.png │ ├── dial_num_8.xml │ ├── dial_num_8_blk.png │ ├── dial_num_8_wht.png │ ├── dial_num_9.xml │ ├── dial_num_9_blk.png │ ├── dial_num_9_wht.png │ ├── dial_num_pound.xml │ ├── dial_num_pound_blk.png │ ├── dial_num_pound_wht.png │ ├── dial_num_star.xml │ ├── dial_num_star_blk.png │ ├── dial_num_star_wht.png │ ├── dialog_divider_horizontal.9.png │ ├── edit_text.xml │ ├── facebook_list_icon_selector.xml │ ├── filter_all_icon_selector.xml │ ├── filter_connected_friends_icon_selector.xml │ ├── filter_dropdown_item_background.xml │ ├── filter_facebook_icon_selector.xml │ ├── filter_family_icon_selector.xml │ ├── filter_friends_icon_selector.xml │ ├── filter_google_icon_selector.xml │ ├── filter_hyves_icon_selector.xml │ ├── filter_msn_icon_selector.xml │ ├── filter_nowplus_icon_selector.xml │ ├── filter_online_selector.xml │ ├── filter_phonebook_icon_selector.xml │ ├── filter_twitter_icon_selector.xml │ ├── filter_user_generated_icon_selector.xml │ ├── filter_work_icon_selector.xml │ ├── google_list_icon_selector.xml │ ├── group_filter_background.xml │ ├── group_filter_background_bottom.xml │ ├── group_filter_background_focus.9.png │ ├── group_filter_background_open.xml │ ├── group_filter_background_pressed.9.png │ ├── group_filter_background_top.9.png │ ├── group_filter_bottom_red.9.png │ ├── hyves_list_icon_selector.xml │ ├── ic_btn_round_minus.png │ ├── ic_btn_round_plus.png │ ├── ic_delete_phone_number.xml │ ├── ic_delete_phone_number_blk.png │ ├── ic_delete_phone_number_wht.png │ ├── ic_dial_number.xml │ ├── ic_dial_number_wht.png │ ├── ic_dialer_fork_add_call.png │ ├── ic_dialer_fork_current_call.png │ ├── ic_dialer_fork_tt_keypad.png │ ├── ic_dialog_alert.png │ ├── ic_dialog_menu_generic.png │ ├── ic_dialog_time.png │ ├── ic_tab_contacts.xml │ ├── ic_tab_dialer.xml │ ├── ic_tab_recent.xml │ ├── ic_tab_status.xml │ ├── list_divider_horizontal.9.png │ ├── list_selector_background.xml │ ├── list_selector_background_disabled.9.png │ ├── list_selector_background_focus.9.png │ ├── list_selector_background_pressed.9.png │ ├── list_selector_background_transition.xml │ ├── me_selector_background.xml │ ├── me_selector_background_focus.9.png │ ├── menu_addcontact.png │ ├── menu_addcontact_highlighted.png │ ├── menu_addcontact_selector.xml │ ├── menu_addicon.png │ ├── menu_addicon_highlighted.png │ ├── menu_addicon_selector.xml │ ├── menu_delete.png │ ├── menu_delete_highlighted.png │ ├── menu_delete_selector.xml │ ├── menu_dialer.png │ ├── menu_dialer_highlighted.png │ ├── menu_dialer_selector.xml │ ├── menu_done.png │ ├── menu_done_highlighted.png │ ├── menu_done_selector.xml │ ├── menu_edit.png │ ├── menu_edit_highlighted.png │ ├── menu_edit_selector.xml │ ├── menu_profile.png │ ├── menu_profile_highlight.png │ ├── menu_profile_icon_selector.xml │ ├── menu_revert.png │ ├── menu_revert_highlighted.png │ ├── menu_revert_selector.xml │ ├── menu_search.png │ ├── menu_search_highlighted.png │ ├── menu_search_selector.xml │ ├── menu_settings.png │ ├── menu_settings_highlighted.png │ ├── menu_settings_selector.xml │ ├── msn_list_icon_selector.xml │ ├── panel_background.9.png │ ├── password_strength0.PNG │ ├── password_strength1.PNG │ ├── password_strength2.PNG │ ├── password_strength3.PNG │ ├── password_strength4.PNG │ ├── password_strength5.PNG │ ├── password_strength_grey.png │ ├── popup_bottom_bright.9.png │ ├── popup_center_bright.9.png │ ├── popup_full_bright.9.png │ ├── popup_top_bright.9.png │ ├── privacylogin_text.xml │ ├── profile_detail_facebook_icon_selector.xml │ ├── profile_detail_google_icon_selector.xml │ ├── profile_detail_hyves_icon_selector.xml │ ├── profile_detail_msn_icon_selector.xml │ ├── profile_detail_sns_default_icon_selector.xml │ ├── profile_detail_twitter_icon_selector.xml │ ├── profile_detail_vodafone_icon_selector.xml │ ├── profile_details_default_15x15.png │ ├── profile_details_default_highlighted_15x15.png │ ├── progress_large.xml │ ├── progress_medium.xml │ ├── progress_small.xml │ ├── pt_availability_available_16x16.png │ ├── pt_availability_idle_16x16.png │ ├── pt_availability_invisible_16x16.png │ ├── pt_dropdownarrow_now1807_16x16.png │ ├── pt_filter_all_48x48.png │ ├── pt_filter_all_highlighted_48x48.png │ ├── pt_filter_connected_friends_48x48.png │ ├── pt_filter_connected_friends_highlighted_48x48.png │ ├── pt_filter_facebook_48x48.png │ ├── pt_filter_facebook_highlighted_48x48.png │ ├── pt_filter_family_48x48.png │ ├── pt_filter_family_highlighted_48x48.png │ ├── pt_filter_friends_48x48.png │ ├── pt_filter_friends_highlighted_48x48.png │ ├── pt_filter_google_48x48.png │ ├── pt_filter_google_highlighted_48x48.png │ ├── pt_filter_hyves_48x48.png │ ├── pt_filter_hyves_highlighted_48x48.png │ ├── pt_filter_nowplus_48x48.png │ ├── pt_filter_nowplus_highlighted_48x48.png │ ├── pt_filter_online_48x48.png │ ├── pt_filter_online_highlighted_48x48.png │ ├── pt_filter_phonebook_48x48.png │ ├── pt_filter_phonebook_highlighted_48x48.png │ ├── pt_filter_twitter_48x48.png │ ├── pt_filter_twitter_highlighted_48x48.png │ ├── pt_filter_user_generated_groups_48x48.png │ ├── pt_filter_user_generated_groups_highlighted_48x48.png │ ├── pt_filter_windows_live_48x48.png │ ├── pt_filter_windows_live_highlighted_48x48.png │ ├── pt_filter_work_48x48.png │ ├── pt_filter_work_highlighted_48x48.png │ ├── pt_info_icon_40x40.png │ ├── pt_launcher_icon.png │ ├── pt_listicon_sns_facebook_16x16.png │ ├── pt_listicon_sns_facebook_highlight_16x16.png │ ├── pt_listicon_sns_google_16x16.png │ ├── pt_listicon_sns_google_highlight_16x16.png │ ├── pt_listicon_sns_hyves_16x16.png │ ├── pt_listicon_sns_hyves_highlight_16x16.png │ ├── pt_listicon_sns_twitter_16x16.png │ ├── pt_listicon_sns_twitter_highlight_16x16.png │ ├── pt_listicon_sns_vf_16x16.png │ ├── pt_listicon_sns_vf_highlight_16x16.png │ ├── pt_listicon_sns_win_16x16.png │ ├── pt_listicon_sns_win_highlight_16x16.png │ ├── pt_profile_details_facebook_35x35.png │ ├── pt_profile_details_facebook_highlighted_35x35.png │ ├── pt_profile_details_google_35x35.png │ ├── pt_profile_details_google_highlighted_35x35.png │ ├── pt_profile_details_hyves_35x35.png │ ├── pt_profile_details_hyves_highlighted_35x35.png │ ├── pt_profile_details_twitter_35x35.png │ ├── pt_profile_details_twitter_highlighted_35x35.png │ ├── pt_profile_details_vodafone_35x35.png │ ├── pt_profile_details_vodafone_highlighted_35x35.png │ ├── pt_profile_details_win_35x35.png │ ├── pt_profile_details_win_highlighted_35x35.png │ ├── pt_signin_addicon.xml │ ├── pt_signin_addicon_46x46_now_0.png │ ├── pt_signin_addicon_46x46_now_80.png │ ├── pt_signin_sns_facebook.xml │ ├── pt_signin_sns_facebook_46x46_now_0.png │ ├── pt_signin_sns_facebook_46x46_now_80.png │ ├── pt_signin_sns_google.xml │ ├── pt_signin_sns_google_46x46_now_0.png │ ├── pt_signin_sns_google_46x46_now_80.png │ ├── pt_signin_sns_hyves.xml │ ├── pt_signin_sns_hyves_46x46_now_0.png │ ├── pt_signin_sns_hyves_46x46_now_80.png │ ├── pt_signin_sns_twitter.xml │ ├── pt_signin_sns_twitter_46x46_now_0.png │ ├── pt_signin_sns_twitter_46x46_now_80.png │ ├── pt_signin_sns_vf.xml │ ├── pt_signin_sns_vf_46x46_now_0.png │ ├── pt_signin_sns_vf_46x46_now_80.png │ ├── pt_signin_sns_win.xml │ ├── pt_signin_sns_win_life_46x46_now_0.png │ ├── pt_signin_sns_win_life_46x46_now_80.png │ ├── pt_statusbar_icon.png │ ├── pt_typefield_active_44x44.9.png │ ├── pt_typefield_click_44x44.9.png │ ├── pt_typefield_selected_44x44.9.png │ ├── scrollbar_handle_horizontal.9.png │ ├── scrollbar_handle_vertical.9.png │ ├── sns_default_list_icon_selector.xml │ ├── status_loadmore_20x20.png │ ├── status_loadmore_highlight_20x20.png │ ├── sync_bg.png │ ├── tab_active.9.png │ ├── tab_active_clicked.9.png │ ├── tab_active_highlighted.9.png │ ├── tab_contacts_active_32x32.png │ ├── tab_contacts_inactive_32x32.png │ ├── tab_contacts_selected_32x32.png │ ├── tab_inactive.9.png │ ├── tab_indicator.xml │ ├── tab_indicator_text.xml │ ├── tab_status_active_32x32.png │ ├── tab_status_inactive_32x32.png │ ├── tab_status_selected_32x32.png │ ├── tab_timeline_active_32x32.png │ ├── tab_timeline_inactive_32x32.png │ ├── tab_timeline_selected_32x32.png │ ├── tabs_dialer.png │ ├── tabs_dialer_active.png │ ├── tabs_dialer_highlighted.png │ ├── textfield_disabled.9.png │ ├── timeline_all.xml │ ├── timeline_all_48x48.png │ ├── timeline_all_highlight_48x48.png │ ├── timeline_call.xml │ ├── timeline_call_48x48.png │ ├── timeline_call_highlight_48x48.png │ ├── timeline_chat.xml │ ├── timeline_chat_48x48.png │ ├── timeline_chat_highlight_48x48.png │ ├── timeline_chat_selector.xml │ ├── timeline_conversationchat_32x32.png │ ├── timeline_conversationchat_highlight_32x32.png │ ├── timeline_dialedcall_32x32.png │ ├── timeline_dialedcall_highlight_32x32.png │ ├── timeline_dialedcall_selector.xml │ ├── timeline_divider.xml │ ├── timeline_divider_vertical.png │ ├── timeline_divider_vertical_highlight.png │ ├── timeline_history_chat_in_selector.xml │ ├── timeline_history_chat_out_selector.xml │ ├── timeline_missedcall_32x32.png │ ├── timeline_missedcall_highlight_32x32.png │ ├── timeline_missedcall_selector.xml │ ├── timeline_mms.xml │ ├── timeline_mms_48x48.png │ ├── timeline_mms_highlight_48x48.png │ ├── timeline_mmsreceived_32x32.png │ ├── timeline_mmsreceived_highlight_32x32.png │ ├── timeline_mmsreceived_selector.xml │ ├── timeline_mmssent_32x32.png │ ├── timeline_mmssent_highlight_32x32.png │ ├── timeline_mmssent_selector.xml │ ├── timeline_progress1.png │ ├── timeline_progress10.png │ ├── timeline_progress11.png │ ├── timeline_progress12.png │ ├── timeline_progress13.png │ ├── timeline_progress14.png │ ├── timeline_progress15.png │ ├── timeline_progress16.png │ ├── timeline_progress17.png │ ├── timeline_progress18.png │ ├── timeline_progress19.png │ ├── timeline_progress2.png │ ├── timeline_progress20.png │ ├── timeline_progress21.png │ ├── timeline_progress22.png │ ├── timeline_progress23.png │ ├── timeline_progress24.png │ ├── timeline_progress3.png │ ├── timeline_progress4.png │ ├── timeline_progress5.png │ ├── timeline_progress6.png │ ├── timeline_progress7.png │ ├── timeline_progress8.png │ ├── timeline_progress9.png │ ├── timeline_receivedcall_32x32.png │ ├── timeline_receivedcall_48x48.png │ ├── timeline_receivedcall_highlight_32x32.png │ ├── timeline_receivedcall_selector.xml │ ├── timeline_selector_background.xml │ ├── timeline_selector_background_focus.9.png │ ├── timeline_selector_background_pressed.9.png │ ├── timeline_sms_48x48.png │ ├── timeline_sms_highlight_48x48.png │ ├── timeline_smsreceived_32x32.png │ ├── timeline_smsreceived_highlight_32x32.png │ ├── timeline_smsreceived_selector.xml │ ├── timeline_smssent_32x32.png │ ├── timeline_smssent_highlight_32x32.png │ ├── timeline_smssent_selector.xml │ ├── twitter_list_icon_selector.xml │ ├── typefield_button_selector.xml │ ├── typfield_button_34x34.png │ ├── vodafone_list_icon_selector.xml │ ├── vodafone_small.PNG │ ├── vodaphone.PNG │ └── widget_status_background.png ├── layout-land-finger │ └── twelve_key_dialer.xml ├── layout │ ├── about.xml │ ├── app_settings.xml │ ├── communicating_with_server.xml │ ├── contact_detail_divider.xml │ ├── contact_detail_list_item.xml │ ├── contact_list.xml │ ├── contact_list_item.xml │ ├── contact_list_item_cupcake.xml │ ├── contact_profile.xml │ ├── contact_status_list.xml │ ├── contact_status_list_item.xml │ ├── context_menu_header.xml │ ├── custom_animation_button.xml │ ├── debug_database_dump_view.xml │ ├── debug_presence.xml │ ├── dialog_general_message.xml │ ├── dialog_header_view.xml │ ├── dialog_roaming.xml │ ├── dialog_scroll_view.xml │ ├── dialog_simple_list.xml │ ├── dialpad.xml │ ├── dialpad_chooser_list_item.xml │ ├── edit_contact.xml │ ├── edit_contact_entry.xml │ ├── edit_contact_entry_date.xml │ ├── edit_contact_entry_group.xml │ ├── edit_contact_entry_org.xml │ ├── edit_contact_entry_postal.xml │ ├── edit_contact_entry_static_label.xml │ ├── edit_divider.xml │ ├── edit_phonetic_name.xml │ ├── edit_separator.xml │ ├── edit_separator_alone.xml │ ├── enter_phone_number_manually.xml │ ├── filter_dropdown_item.xml │ ├── filter_dropdown_item_corner.xml │ ├── filter_list_item.xml │ ├── landing_page1.xml │ ├── login_account_details.xml │ ├── meprofile_list_item.xml │ ├── network_settings.xml │ ├── people_widget.xml │ ├── progress_layout.xml │ ├── signup_password_creation.xml │ ├── simple_list_item_1.xml │ ├── syncing_your_address_book.xml │ ├── tab_content.xml │ ├── tab_indicator.xml │ ├── test_presence_listview.xml │ ├── third_party_account_details.xml │ ├── third_party_accounts.xml │ ├── third_party_new_account_selection.xml │ ├── third_party_placeholder.xml │ ├── third_party_row.xml │ ├── timeline_filter_dropdown_item.xml │ ├── timeline_filter_dropdown_item_corner.xml │ ├── timeline_history.xml │ ├── timeline_history_chat_in.xml │ ├── timeline_history_chat_out.xml │ ├── timeline_history_list_divider.xml │ ├── timeline_history_list_divider_bottom.xml │ ├── timeline_history_list_item.xml │ ├── timeline_list.xml │ ├── timeline_list_item.xml │ ├── twelve_key_dialer.xml │ ├── update_serviceagent.xml │ ├── validating_your_third_party_account.xml │ └── wizard_signup.xml ├── menu │ ├── contact_list_context_menu.xml │ ├── contact_list_menu.xml │ ├── contact_profile_context_menu.xml │ ├── contact_profile_menu.xml │ ├── contact_status_list_menu.xml │ └── timeline_history_menu.xml ├── values-cs-rCZ │ └── strings.xml ├── values-da-rDK │ └── strings.xml ├── values-de │ └── strings.xml ├── values-el-rGR │ └── strings.xml ├── values-es │ └── strings.xml ├── values-fr │ └── strings.xml ├── values-it │ └── strings.xml ├── values-nl │ └── strings.xml ├── values-pt │ └── strings.xml ├── values-ru │ └── strings.xml ├── values-tr │ └── strings.xml ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── strings.xml │ └── styles.xml └── xml │ ├── account_preferences.xml │ ├── authenticator.xml │ ├── contacts.xml │ ├── searchable.xml │ ├── syncadapter.xml │ └── widget_provider_info.xml ├── src ├── com │ ├── caucho │ │ └── hessian │ │ │ └── micro │ │ │ ├── MicroHessianInput.java │ │ │ └── MicroHessianOutput.java │ └── vodafone360 │ │ └── people │ │ ├── ApplicationCache.java │ │ ├── Intents.java │ │ ├── MainApplication.java │ │ ├── Settings.java │ │ ├── SettingsManager.java │ │ ├── ThumbnailCache.java │ │ ├── VODAFONE LICENSE.txt │ │ ├── database │ │ ├── DatabaseHelper.java │ │ ├── SQLKeys.java │ │ ├── persistenceHelper │ │ │ ├── NotPersistableException.java │ │ │ ├── Persistable.java │ │ │ └── PersistenceHelper.java │ │ ├── tables │ │ │ ├── ActivitiesTable.java │ │ │ ├── ContactChangeLogTable.java │ │ │ ├── ContactDetailsTable.java │ │ │ ├── ContactGroupsTable.java │ │ │ ├── ContactSourceTable.java │ │ │ ├── ContactSummaryTable.java │ │ │ ├── ContactsTable.java │ │ │ ├── ConversationsTable.java │ │ │ ├── GroupsTable.java │ │ │ ├── MePresenceCacheTable.java │ │ │ ├── MyIdentitiesCacheTable.java │ │ │ ├── NativeChangeLogTable.java │ │ │ ├── PresenceTable.java │ │ │ └── StateTable.java │ │ └── utils │ │ │ ├── EncryptionUtils.java │ │ │ └── SqlUtils.java │ │ ├── datatypes │ │ ├── ActivityContact.java │ │ ├── ActivityItem.java │ │ ├── AuthSessionHolder.java │ │ ├── BaseDataType.java │ │ ├── ChatMessage.java │ │ ├── Contact.java │ │ ├── ContactChanges.java │ │ ├── ContactDetail.java │ │ ├── ContactDetailDeletion.java │ │ ├── ContactListResponse.java │ │ ├── ContactSummary.java │ │ ├── Conversation.java │ │ ├── ExternalResponseObject.java │ │ ├── GroupItem.java │ │ ├── Identity.java │ │ ├── IdentityCapability.java │ │ ├── IdentityDeletion.java │ │ ├── ItemList.java │ │ ├── LoginDetails.java │ │ ├── PresenceList.java │ │ ├── PublicKeyDetails.java │ │ ├── PushAvailabilityEvent.java │ │ ├── PushChatConversationEvent.java │ │ ├── PushChatMessageEvent.java │ │ ├── PushClosedConversationEvent.java │ │ ├── PushEvent.java │ │ ├── RegistrationDetails.java │ │ ├── ServerError.java │ │ ├── SimpleText.java │ │ ├── StatusMsg.java │ │ ├── SystemNotification.java │ │ ├── UserProfile.java │ │ └── VCardHelper.java │ │ ├── engine │ │ ├── BaseEngine.java │ │ ├── EngineManager.java │ │ ├── IEngineEventCallback.java │ │ ├── activities │ │ │ ├── ActivitiesEngine.java │ │ │ ├── FetchCallLogEvents.java │ │ │ ├── FetchSmsLogEvents.java │ │ │ ├── MmsDecoder.java │ │ │ └── TimelineEventWatcher.java │ │ ├── contactsync │ │ │ ├── BaseSyncProcessor.java │ │ │ ├── ContactChange.java │ │ │ ├── ContactSyncEngine.java │ │ │ ├── DefaultProcessorFactory.java │ │ │ ├── DownloadServerContacts.java │ │ │ ├── FetchNativeContacts.java │ │ │ ├── IContactSyncCallback.java │ │ │ ├── NativeContactsApi.java │ │ │ ├── NativeContactsApi1.java │ │ │ ├── NativeContactsApi2.java │ │ │ ├── NativeExporter.java │ │ │ ├── NativeImporter.java │ │ │ ├── PeopleContactsApi.java │ │ │ ├── ProcessorFactory.java │ │ │ ├── SyncStatus.java │ │ │ ├── UpdateNativeContacts.java │ │ │ └── UploadServerContacts.java │ │ ├── content │ │ │ ├── ContentEngine.java │ │ │ ├── ContentObject.java │ │ │ ├── FiFoQueue.java │ │ │ ├── ThumbnailHandler.java │ │ │ └── TransferListener.java │ │ ├── groups │ │ │ └── GroupsEngine.java │ │ ├── identities │ │ │ └── IdentityEngine.java │ │ ├── login │ │ │ ├── LoginEngine.java │ │ │ └── RSAEncryptionUtils.java │ │ ├── meprofile │ │ │ ├── SyncMeDbUtils.java │ │ │ └── SyncMeEngine.java │ │ ├── presence │ │ │ ├── ChatDbUtils.java │ │ │ ├── NetworkPresence.java │ │ │ ├── PresenceDbUtils.java │ │ │ ├── PresenceEngine.java │ │ │ └── User.java │ │ └── upgrade │ │ │ ├── UpgradeEngine.java │ │ │ ├── UpgradeStatus.java │ │ │ ├── UpgradeUtils.java │ │ │ └── VersionCheck.java │ │ ├── service │ │ ├── Authenticator.java │ │ ├── NativeAccountObjectsHolder.java │ │ ├── PeopleServiceImpl.java │ │ ├── PersistSettings.java │ │ ├── RemoteService.java │ │ ├── ServiceStatus.java │ │ ├── ServiceUiRequest.java │ │ ├── SyncAdapter.java │ │ ├── WorkerThread.java │ │ ├── agent │ │ │ ├── NetworkAgent.java │ │ │ ├── NetworkAgentState.java │ │ │ └── UiAgent.java │ │ ├── aidl │ │ │ ├── DatabaseProvider.java │ │ │ ├── IdlPeopleInterface.java │ │ │ ├── Intents.java │ │ │ └── ThirdPartyUtils.java │ │ ├── interfaces │ │ │ ├── IConnectionManagerInterface.java │ │ │ ├── IPeopleService.java │ │ │ └── IWorkerThreadControl.java │ │ ├── io │ │ │ ├── QueueManager.java │ │ │ ├── Request.java │ │ │ ├── RequestQueue.java │ │ │ ├── ResponseQueue.java │ │ │ ├── api │ │ │ │ ├── Activities.java │ │ │ │ ├── ApiUtils.java │ │ │ │ ├── Auth.java │ │ │ │ ├── Chat.java │ │ │ │ ├── Contacts.java │ │ │ │ ├── GroupPrivacy.java │ │ │ │ ├── Identities.java │ │ │ │ └── Presence.java │ │ │ └── rpg │ │ │ │ ├── PushMessageTypes.java │ │ │ │ ├── RpgHeader.java │ │ │ │ ├── RpgHelper.java │ │ │ │ ├── RpgMessage.java │ │ │ │ ├── RpgMessageTypes.java │ │ │ │ └── RpgPushMessage.java │ │ ├── receivers │ │ │ ├── SimStateReceiver.java │ │ │ ├── SmsBroadcastReceiver.java │ │ │ └── StartBroadcastReceiver.java │ │ ├── transport │ │ │ ├── ConnectionManager.java │ │ │ ├── DecoderThread.java │ │ │ ├── IConnection.java │ │ │ ├── IQueueListener.java │ │ │ ├── IWakeupListener.java │ │ │ ├── http │ │ │ │ ├── HttpConnectionThread.java │ │ │ │ ├── PollThread.java │ │ │ │ └── authentication │ │ │ │ │ └── AuthenticationManager.java │ │ │ └── tcp │ │ │ │ ├── ConnectionTester.java │ │ │ │ ├── HeartbeatSenderThread.java │ │ │ │ ├── ITcpConnectionListener.java │ │ │ │ ├── ResponseReaderThread.java │ │ │ │ └── TcpConnectionThread.java │ │ └── utils │ │ │ ├── AuthUtils.java │ │ │ ├── TimeOutWatcher.java │ │ │ ├── UserDataProtection.java │ │ │ └── hessian │ │ │ ├── HessianDecoder.java │ │ │ ├── HessianEncoder.java │ │ │ └── HessianUtils.java │ │ └── utils │ │ ├── CloseUtils.java │ │ ├── CursorUtils.java │ │ ├── DynamicArrayLong.java │ │ ├── LRUHashMap.java │ │ ├── LogUtils.java │ │ ├── LoginPreferences.java │ │ ├── MathUtils.java │ │ ├── ResetableBufferedInputStream.java │ │ ├── ServiceUtils.java │ │ ├── SimCard.java │ │ ├── StringBufferPool.java │ │ ├── StringUtils.java │ │ ├── ThirdPartyAccount.java │ │ ├── ThumbnailUtils.java │ │ ├── VersionUtils.java │ │ └── WidgetUtils.java ├── org │ └── bouncycastle │ │ └── crypto │ │ ├── AsymmetricBlockCipher.java │ │ ├── CipherParameters.java │ │ ├── CryptoException.java │ │ ├── DataLengthException.java │ │ ├── InvalidCipherTextException.java │ │ ├── RuntimeCryptoException.java │ │ ├── encodings │ │ └── PKCS1Encoding.java │ │ ├── engines │ │ ├── RSACoreEngine.java │ │ └── RSAEngine.java │ │ └── params │ │ ├── AsymmetricKeyParameter.java │ │ ├── ParametersWithRandom.java │ │ ├── RSAKeyParameters.java │ │ └── RSAPrivateCrtKeyParameters.java └── overview.html └── tests ├── AndroidManifest.xml ├── build.properties ├── build.xml ├── default.properties ├── res ├── .placeholder ├── drawable-hdpi │ └── .placeholder ├── drawable-ldpi │ └── .placeholder ├── drawable-mdpi │ └── .placeholder ├── layout │ └── .placeholder ├── raw │ └── .placeholder └── values │ └── .placeholder └── src └── com └── vodafone360 └── people └── tests ├── AllTests.java ├── IPeopleTestFramework.java ├── PeopleTestConnectionThread.java ├── TestModule.java ├── database ├── ContactGroupsTableTest.java ├── ContactSourceTableTest.java ├── DbTestUtility.java ├── GroupsTableTest.java ├── MePresenceCacheTableTest.java ├── NowPlusActivitiesTableTest.java ├── NowPlusActivitiesTest.java ├── NowPlusChangeLogTest.java ├── NowPlusContactDetailsTableTest.java ├── NowPlusContactSummaryTest.java ├── NowPlusContactsTableTest.java ├── NowPlusContactsTest.java ├── NowPlusDBHelperActivitiesTest.java ├── NowPlusDBHelperLoginTest.java ├── NowPlusDBHelperThumbnailTest.java ├── NowPlusNativeChangeTableTest.java ├── NowPlusPresenceDbUtilsTest.java ├── NowPlusPresenceTableTest.java ├── NowPlusStateTableTest.java └── NowPlusTableTestCase.java ├── datatypes └── NowPlusDatatypesTests.java ├── engine ├── ActivitiesEngineTest.java ├── EngineTestFramework.java ├── IEngineTestFrameworkObserver.java ├── IdentityEngineTest.java ├── LoginEngineTest.java ├── SyncMeEngineTest.java ├── UpgradeEngineTest.java ├── contactsync │ ├── ContactChangeHelper.java │ ├── ContactChangeTest.java │ ├── ContactSyncEngineTest.java │ ├── DefaultProcessorFactoryTest.java │ ├── DownloadServerContactsTest.java │ ├── DummyContactSyncEngine.java │ ├── FetchNativeContactsTest.java │ ├── HelperClasses.java │ ├── NativeContactsApiTest.java │ ├── NativeContactsApiTestHelper.java │ ├── NativeContactsApiTestHelper1.java │ ├── NativeContactsApiTestHelper2.java │ ├── NativeExporterTest.java │ ├── NativeImporterTest.java │ ├── PeopleContactsApiTest.java │ ├── SyncMeProfileTest.java │ ├── UpdateNativeContactsTest.java │ └── UploadServerContactsTest.java └── presence │ ├── ChatDbUtilsTest.java │ └── PresenceEngineTest.java ├── service ├── AuthenticatorTest.java ├── NowPlusServiceTestHelper.java ├── PeopleServiceTest.java ├── RemoteServiceTest.java ├── SyncAdapterTest.java ├── transport │ └── tcp │ │ └── conn_less │ │ ├── hb_tests │ │ ├── HeartbeatSenderThreadTest.java │ │ ├── MockByteArrayOutputStream.java │ │ ├── MockHeartbeatSenderThread.java │ │ └── MockTcpConnectionThread.java │ │ └── respreader │ │ ├── MockDecoderThread.java │ │ ├── MockOTAInputStream.java │ │ ├── MockResponseReaderThread.java │ │ ├── MockTcpConnectionThread.java │ │ └── ResponseReaderThreadTest.java └── utils │ ├── TimeOutWatcherTest.java │ └── hessian │ └── HessianDecoderTest.java ├── testutils ├── FrameworkUtils.java └── TestStatus.java └── utils ├── DynamicArrayLongTest.java ├── MathUtilsTest.java ├── StringUtilsTest.java └── ThumbnailUtilsTest.java /.gitignore: -------------------------------------------------------------------------------- 1 | config.properties 2 | tests/bin/* 3 | bin 4 | gen 5 | .classpath 6 | .project 7 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | For detailed documentation please visit http://360.github.com/360-Engine-for-Android 2 | -------------------------------------------------------------------------------- /aidl/android/os/Message.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | 26 | package android.os; 27 | 28 | /** 29 | * This comes from the Android operating system, but we need a local .aidl file 30 | * so we can compile. 31 | */ 32 | 33 | parcelable Message; -------------------------------------------------------------------------------- /aidl/com/vodafone360/people/datatypes/Identity.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | 26 | package com.vodafone360.people.datatypes; 27 | 28 | parcelable Identity; -------------------------------------------------------------------------------- /aidl/com/vodafone360/people/datatypes/LoginDetails.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | 26 | package com.vodafone360.people.datatypes; 27 | 28 | parcelable LoginDetails; -------------------------------------------------------------------------------- /aidl/com/vodafone360/people/datatypes/RegistrationDetails.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | 26 | package com.vodafone360.people.datatypes; 27 | 28 | parcelable RegistrationDetails; -------------------------------------------------------------------------------- /aidl/com/vodafone360/people/engine/presence/NetworkPresence.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | 26 | package com.vodafone360.people.engine.presence; 27 | 28 | parcelable NetworkPresence; -------------------------------------------------------------------------------- /aidl/com/vodafone360/people/engine/presence/User.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | 26 | package com.vodafone360.people.engine.presence; 27 | 28 | import com.vodafone360.people.engine.presence.NetworkPresence; 29 | 30 | parcelable User; -------------------------------------------------------------------------------- /aidl/com/vodafone360/people/service/aidl/IDatabaseSubscriber.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | package com.vodafone360.people.service.aidl; 26 | 27 | import android.os.Message; 28 | 29 | interface IDatabaseSubscriber { 30 | void handleEvent(in Message msg); 31 | void onServiceReady(); 32 | } -------------------------------------------------------------------------------- /default.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 use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Indicates whether an apk should be generated for each density. 11 | split.density=false 12 | # Project target. 13 | target=android-7 14 | apk-configurations= 15 | -------------------------------------------------------------------------------- /res/anim/context_in_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 28 | 29 | 36 | 37 | -------------------------------------------------------------------------------- /res/anim/context_list_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 28 | 29 | 36 | -------------------------------------------------------------------------------- /res/anim/context_list_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 28 | 35 | 36 | -------------------------------------------------------------------------------- /res/anim/context_out_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 28 | 35 | 36 | -------------------------------------------------------------------------------- /res/anim/fadeout_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | -------------------------------------------------------------------------------- /res/color/contact_detail_text_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/color/contact_detail_type_text_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/color/me_profile_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 31 | -------------------------------------------------------------------------------- /res/color/people_primary_text_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/color/people_primary_text_dark_nodisable.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /res/color/people_primary_text_light_disable_only.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /res/color/people_primary_text_light_nodisable.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /res/color/people_secondary_text_dark_nodisable.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /res/color/people_secondary_text_light_nodisable.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /res/color/people_tertiary_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/color/people_tertiary_text_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /res/color/status_content_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/color/status_date_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/color/timeline_content_messagein_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/color/timeline_content_messageout_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /res/color/timeline_content_missedcall_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/color/timeline_content_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/color/timeline_date_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 |  28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/android_landingpage_blank_320x315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/android_landingpage_blank_320x315.png -------------------------------------------------------------------------------- /res/drawable/btn_check_label_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_check_label_background.9.png -------------------------------------------------------------------------------- /res/drawable/btn_dial.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | -------------------------------------------------------------------------------- /res/drawable/btn_dial_delete.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | -------------------------------------------------------------------------------- /res/drawable/btn_dial_delete_activated.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_delete_activated.9.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_delete_active.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | -------------------------------------------------------------------------------- /res/drawable/btn_dial_delete_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_delete_normal.9.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_delete_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_delete_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_delete_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_delete_selected.9.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_pressed.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_selected.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_textfield.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/btn_dial_textfield_activated.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_textfield_activated.9.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_textfield_active.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | -------------------------------------------------------------------------------- /res/drawable/btn_dial_textfield_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_textfield_normal.9.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_textfield_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_textfield_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/btn_dial_textfield_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_dial_textfield_selected.9.png -------------------------------------------------------------------------------- /res/drawable/btn_radio_label_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_radio_label_background.9.png -------------------------------------------------------------------------------- /res/drawable/btn_radio_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_radio_off.png -------------------------------------------------------------------------------- /res/drawable/btn_radio_off_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_radio_off_pressed.png -------------------------------------------------------------------------------- /res/drawable/btn_radio_off_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_radio_off_selected.png -------------------------------------------------------------------------------- /res/drawable/btn_radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_radio_on.png -------------------------------------------------------------------------------- /res/drawable/btn_radio_on_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_radio_on_pressed.png -------------------------------------------------------------------------------- /res/drawable/btn_radio_on_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/btn_radio_on_selected.png -------------------------------------------------------------------------------- /res/drawable/button_45x45.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/button_45x45.9.png -------------------------------------------------------------------------------- /res/drawable/button_click_45x45.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/button_click_45x45.9.png -------------------------------------------------------------------------------- /res/drawable/button_selected_45x45.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/button_selected_45x45.9.png -------------------------------------------------------------------------------- /res/drawable/chat_bubblearrow_highlight_now_1807_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/chat_bubblearrow_highlight_now_1807_10x10.png -------------------------------------------------------------------------------- /res/drawable/chat_bubblearrow_me_now_1807_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/chat_bubblearrow_me_now_1807_10x10.png -------------------------------------------------------------------------------- /res/drawable/chat_bubblearrow_me_now_1807_dark_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/chat_bubblearrow_me_now_1807_dark_10x10.png -------------------------------------------------------------------------------- /res/drawable/chat_bubblearrow_now_299_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/chat_bubblearrow_now_299_10x10.png -------------------------------------------------------------------------------- /res/drawable/chat_bubblearrow_now_6_5_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/chat_bubblearrow_now_6_5_10x10.png -------------------------------------------------------------------------------- /res/drawable/chat_bubblearrow_press_now_1807_dark_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/chat_bubblearrow_press_now_1807_dark_10x10.png -------------------------------------------------------------------------------- /res/drawable/checkbox_off_30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/checkbox_off_30x30.png -------------------------------------------------------------------------------- /res/drawable/checkbox_on_30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/checkbox_on_30x30.png -------------------------------------------------------------------------------- /res/drawable/contact_avatar_default_40x40_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/contact_avatar_default_40x40_white.png -------------------------------------------------------------------------------- /res/drawable/contact_avatar_default_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/contact_avatar_default_blue.png -------------------------------------------------------------------------------- /res/drawable/contact_detail_divider_horizontal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/contact_detail_divider_horizontal.9.png -------------------------------------------------------------------------------- /res/drawable/default_15x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/default_15x15.png -------------------------------------------------------------------------------- /res/drawable/default_15x15_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/default_15x15_highlight.png -------------------------------------------------------------------------------- /res/drawable/dial_num_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_0_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_0_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_0_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_0_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_1_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_1_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_1_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_1_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_2_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_2_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_2_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_2_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_3_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_3_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_3_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_3_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_4_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_4_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_4_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_4_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_5_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_5_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_5_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_5_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_6_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_6_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_6_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_6_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_7_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_7_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_7_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_7_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_8.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_8_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_8_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_8_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_8_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_9.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_9_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_9_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_9_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_9_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_pound.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_pound_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_pound_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_pound_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_pound_wht.png -------------------------------------------------------------------------------- /res/drawable/dial_num_star.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/dial_num_star_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_star_blk.png -------------------------------------------------------------------------------- /res/drawable/dial_num_star_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dial_num_star_wht.png -------------------------------------------------------------------------------- /res/drawable/dialog_divider_horizontal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/dialog_divider_horizontal.9.png -------------------------------------------------------------------------------- /res/drawable/group_filter_background_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/group_filter_background_focus.9.png -------------------------------------------------------------------------------- /res/drawable/group_filter_background_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/group_filter_background_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/group_filter_background_top.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/group_filter_background_top.9.png -------------------------------------------------------------------------------- /res/drawable/group_filter_bottom_red.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/group_filter_bottom_red.9.png -------------------------------------------------------------------------------- /res/drawable/ic_btn_round_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_btn_round_minus.png -------------------------------------------------------------------------------- /res/drawable/ic_btn_round_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_btn_round_plus.png -------------------------------------------------------------------------------- /res/drawable/ic_delete_phone_number.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/ic_delete_phone_number_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_delete_phone_number_blk.png -------------------------------------------------------------------------------- /res/drawable/ic_delete_phone_number_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_delete_phone_number_wht.png -------------------------------------------------------------------------------- /res/drawable/ic_dial_number.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 28 | 30 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/drawable/ic_dial_number_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_dial_number_wht.png -------------------------------------------------------------------------------- /res/drawable/ic_dialer_fork_add_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_dialer_fork_add_call.png -------------------------------------------------------------------------------- /res/drawable/ic_dialer_fork_current_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_dialer_fork_current_call.png -------------------------------------------------------------------------------- /res/drawable/ic_dialer_fork_tt_keypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_dialer_fork_tt_keypad.png -------------------------------------------------------------------------------- /res/drawable/ic_dialog_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_dialog_alert.png -------------------------------------------------------------------------------- /res/drawable/ic_dialog_menu_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_dialog_menu_generic.png -------------------------------------------------------------------------------- /res/drawable/ic_dialog_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/ic_dialog_time.png -------------------------------------------------------------------------------- /res/drawable/list_divider_horizontal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/list_divider_horizontal.9.png -------------------------------------------------------------------------------- /res/drawable/list_selector_background_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/list_selector_background_disabled.9.png -------------------------------------------------------------------------------- /res/drawable/list_selector_background_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/list_selector_background_focus.9.png -------------------------------------------------------------------------------- /res/drawable/list_selector_background_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/list_selector_background_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/list_selector_background_transition.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /res/drawable/me_selector_background_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/me_selector_background_focus.9.png -------------------------------------------------------------------------------- /res/drawable/menu_addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_addcontact.png -------------------------------------------------------------------------------- /res/drawable/menu_addcontact_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_addcontact_highlighted.png -------------------------------------------------------------------------------- /res/drawable/menu_addcontact_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/menu_addicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_addicon.png -------------------------------------------------------------------------------- /res/drawable/menu_addicon_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_addicon_highlighted.png -------------------------------------------------------------------------------- /res/drawable/menu_addicon_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/menu_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_delete.png -------------------------------------------------------------------------------- /res/drawable/menu_delete_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_delete_highlighted.png -------------------------------------------------------------------------------- /res/drawable/menu_delete_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/menu_dialer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_dialer.png -------------------------------------------------------------------------------- /res/drawable/menu_dialer_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_dialer_highlighted.png -------------------------------------------------------------------------------- /res/drawable/menu_dialer_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/menu_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_done.png -------------------------------------------------------------------------------- /res/drawable/menu_done_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_done_highlighted.png -------------------------------------------------------------------------------- /res/drawable/menu_done_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/menu_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_edit.png -------------------------------------------------------------------------------- /res/drawable/menu_edit_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_edit_highlighted.png -------------------------------------------------------------------------------- /res/drawable/menu_edit_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/menu_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_profile.png -------------------------------------------------------------------------------- /res/drawable/menu_profile_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_profile_highlight.png -------------------------------------------------------------------------------- /res/drawable/menu_profile_icon_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/menu_revert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_revert.png -------------------------------------------------------------------------------- /res/drawable/menu_revert_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_revert_highlighted.png -------------------------------------------------------------------------------- /res/drawable/menu_revert_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/menu_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_search.png -------------------------------------------------------------------------------- /res/drawable/menu_search_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_search_highlighted.png -------------------------------------------------------------------------------- /res/drawable/menu_search_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/menu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_settings.png -------------------------------------------------------------------------------- /res/drawable/menu_settings_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/menu_settings_highlighted.png -------------------------------------------------------------------------------- /res/drawable/menu_settings_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /res/drawable/panel_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/panel_background.9.png -------------------------------------------------------------------------------- /res/drawable/password_strength0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/password_strength0.PNG -------------------------------------------------------------------------------- /res/drawable/password_strength1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/password_strength1.PNG -------------------------------------------------------------------------------- /res/drawable/password_strength2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/password_strength2.PNG -------------------------------------------------------------------------------- /res/drawable/password_strength3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/password_strength3.PNG -------------------------------------------------------------------------------- /res/drawable/password_strength4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/password_strength4.PNG -------------------------------------------------------------------------------- /res/drawable/password_strength5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/password_strength5.PNG -------------------------------------------------------------------------------- /res/drawable/password_strength_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/password_strength_grey.png -------------------------------------------------------------------------------- /res/drawable/popup_bottom_bright.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/popup_bottom_bright.9.png -------------------------------------------------------------------------------- /res/drawable/popup_center_bright.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/popup_center_bright.9.png -------------------------------------------------------------------------------- /res/drawable/popup_full_bright.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/popup_full_bright.9.png -------------------------------------------------------------------------------- /res/drawable/popup_top_bright.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/popup_top_bright.9.png -------------------------------------------------------------------------------- /res/drawable/privacylogin_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 |  27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /res/drawable/profile_details_default_15x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/profile_details_default_15x15.png -------------------------------------------------------------------------------- /res/drawable/profile_details_default_highlighted_15x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/profile_details_default_highlighted_15x15.png -------------------------------------------------------------------------------- /res/drawable/pt_availability_available_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_availability_available_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_availability_idle_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_availability_idle_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_availability_invisible_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_availability_invisible_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_dropdownarrow_now1807_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_dropdownarrow_now1807_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_all_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_all_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_all_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_all_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_connected_friends_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_connected_friends_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_connected_friends_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_connected_friends_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_facebook_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_facebook_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_facebook_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_facebook_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_family_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_family_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_family_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_family_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_friends_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_friends_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_friends_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_friends_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_google_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_google_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_google_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_google_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_hyves_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_hyves_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_hyves_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_hyves_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_nowplus_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_nowplus_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_nowplus_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_nowplus_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_online_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_online_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_online_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_online_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_phonebook_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_phonebook_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_phonebook_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_phonebook_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_twitter_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_twitter_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_twitter_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_twitter_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_user_generated_groups_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_user_generated_groups_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_user_generated_groups_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_user_generated_groups_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_windows_live_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_windows_live_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_windows_live_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_windows_live_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_work_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_work_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_filter_work_highlighted_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_filter_work_highlighted_48x48.png -------------------------------------------------------------------------------- /res/drawable/pt_info_icon_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_info_icon_40x40.png -------------------------------------------------------------------------------- /res/drawable/pt_launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_launcher_icon.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_facebook_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_facebook_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_facebook_highlight_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_facebook_highlight_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_google_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_google_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_google_highlight_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_google_highlight_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_hyves_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_hyves_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_hyves_highlight_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_hyves_highlight_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_twitter_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_twitter_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_twitter_highlight_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_twitter_highlight_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_vf_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_vf_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_vf_highlight_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_vf_highlight_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_win_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_win_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_listicon_sns_win_highlight_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_listicon_sns_win_highlight_16x16.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_facebook_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_facebook_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_facebook_highlighted_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_facebook_highlighted_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_google_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_google_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_google_highlighted_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_google_highlighted_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_hyves_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_hyves_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_hyves_highlighted_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_hyves_highlighted_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_twitter_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_twitter_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_twitter_highlighted_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_twitter_highlighted_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_vodafone_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_vodafone_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_vodafone_highlighted_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_vodafone_highlighted_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_win_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_win_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_profile_details_win_highlighted_35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_profile_details_win_highlighted_35x35.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_addicon.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /res/drawable/pt_signin_addicon_46x46_now_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_addicon_46x46_now_0.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_addicon_46x46_now_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_addicon_46x46_now_80.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_facebook_46x46_now_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_facebook_46x46_now_0.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_facebook_46x46_now_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_facebook_46x46_now_80.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_google.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_google_46x46_now_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_google_46x46_now_0.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_google_46x46_now_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_google_46x46_now_80.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_hyves.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_hyves_46x46_now_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_hyves_46x46_now_0.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_hyves_46x46_now_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_hyves_46x46_now_80.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_twitter_46x46_now_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_twitter_46x46_now_0.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_twitter_46x46_now_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_twitter_46x46_now_80.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_vf.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 33 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_vf_46x46_now_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_vf_46x46_now_0.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_vf_46x46_now_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_vf_46x46_now_80.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_win_life_46x46_now_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_win_life_46x46_now_0.png -------------------------------------------------------------------------------- /res/drawable/pt_signin_sns_win_life_46x46_now_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_signin_sns_win_life_46x46_now_80.png -------------------------------------------------------------------------------- /res/drawable/pt_statusbar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_statusbar_icon.png -------------------------------------------------------------------------------- /res/drawable/pt_typefield_active_44x44.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_typefield_active_44x44.9.png -------------------------------------------------------------------------------- /res/drawable/pt_typefield_click_44x44.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_typefield_click_44x44.9.png -------------------------------------------------------------------------------- /res/drawable/pt_typefield_selected_44x44.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/pt_typefield_selected_44x44.9.png -------------------------------------------------------------------------------- /res/drawable/scrollbar_handle_horizontal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/scrollbar_handle_horizontal.9.png -------------------------------------------------------------------------------- /res/drawable/scrollbar_handle_vertical.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/scrollbar_handle_vertical.9.png -------------------------------------------------------------------------------- /res/drawable/status_loadmore_20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/status_loadmore_20x20.png -------------------------------------------------------------------------------- /res/drawable/status_loadmore_highlight_20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/status_loadmore_highlight_20x20.png -------------------------------------------------------------------------------- /res/drawable/sync_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/sync_bg.png -------------------------------------------------------------------------------- /res/drawable/tab_active.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_active.9.png -------------------------------------------------------------------------------- /res/drawable/tab_active_clicked.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_active_clicked.9.png -------------------------------------------------------------------------------- /res/drawable/tab_active_highlighted.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_active_highlighted.9.png -------------------------------------------------------------------------------- /res/drawable/tab_contacts_active_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_contacts_active_32x32.png -------------------------------------------------------------------------------- /res/drawable/tab_contacts_inactive_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_contacts_inactive_32x32.png -------------------------------------------------------------------------------- /res/drawable/tab_contacts_selected_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_contacts_selected_32x32.png -------------------------------------------------------------------------------- /res/drawable/tab_inactive.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_inactive.9.png -------------------------------------------------------------------------------- /res/drawable/tab_status_active_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_status_active_32x32.png -------------------------------------------------------------------------------- /res/drawable/tab_status_inactive_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_status_inactive_32x32.png -------------------------------------------------------------------------------- /res/drawable/tab_status_selected_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_status_selected_32x32.png -------------------------------------------------------------------------------- /res/drawable/tab_timeline_active_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_timeline_active_32x32.png -------------------------------------------------------------------------------- /res/drawable/tab_timeline_inactive_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_timeline_inactive_32x32.png -------------------------------------------------------------------------------- /res/drawable/tab_timeline_selected_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tab_timeline_selected_32x32.png -------------------------------------------------------------------------------- /res/drawable/tabs_dialer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tabs_dialer.png -------------------------------------------------------------------------------- /res/drawable/tabs_dialer_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tabs_dialer_active.png -------------------------------------------------------------------------------- /res/drawable/tabs_dialer_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/tabs_dialer_highlighted.png -------------------------------------------------------------------------------- /res/drawable/textfield_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/textfield_disabled.9.png -------------------------------------------------------------------------------- /res/drawable/timeline_all_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_all_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_all_highlight_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_all_highlight_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_call_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_call_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_call_highlight_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_call_highlight_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_chat_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_chat_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_chat_highlight_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_chat_highlight_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_conversationchat_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_conversationchat_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_conversationchat_highlight_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_conversationchat_highlight_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_dialedcall_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_dialedcall_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_dialedcall_highlight_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_dialedcall_highlight_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_divider_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_divider_vertical.png -------------------------------------------------------------------------------- /res/drawable/timeline_divider_vertical_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_divider_vertical_highlight.png -------------------------------------------------------------------------------- /res/drawable/timeline_missedcall_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_missedcall_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_missedcall_highlight_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_missedcall_highlight_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_mms_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_mms_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_mms_highlight_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_mms_highlight_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_mmsreceived_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_mmsreceived_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_mmsreceived_highlight_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_mmsreceived_highlight_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_mmssent_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_mmssent_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_mmssent_highlight_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_mmssent_highlight_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress1.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress10.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress11.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress12.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress13.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress14.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress15.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress16.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress17.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress18.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress19.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress2.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress20.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress21.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress22.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress23.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress24.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress3.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress4.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress5.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress6.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress7.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress8.png -------------------------------------------------------------------------------- /res/drawable/timeline_progress9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_progress9.png -------------------------------------------------------------------------------- /res/drawable/timeline_receivedcall_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_receivedcall_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_receivedcall_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_receivedcall_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_receivedcall_highlight_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_receivedcall_highlight_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_selector_background_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_selector_background_focus.9.png -------------------------------------------------------------------------------- /res/drawable/timeline_selector_background_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_selector_background_pressed.9.png -------------------------------------------------------------------------------- /res/drawable/timeline_sms_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_sms_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_sms_highlight_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_sms_highlight_48x48.png -------------------------------------------------------------------------------- /res/drawable/timeline_smsreceived_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_smsreceived_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_smsreceived_highlight_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_smsreceived_highlight_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_smssent_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_smssent_32x32.png -------------------------------------------------------------------------------- /res/drawable/timeline_smssent_highlight_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/timeline_smssent_highlight_32x32.png -------------------------------------------------------------------------------- /res/drawable/typfield_button_34x34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/typfield_button_34x34.png -------------------------------------------------------------------------------- /res/drawable/vodafone_small.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/vodafone_small.PNG -------------------------------------------------------------------------------- /res/drawable/vodaphone.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/vodaphone.PNG -------------------------------------------------------------------------------- /res/drawable/widget_status_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/res/drawable/widget_status_background.png -------------------------------------------------------------------------------- /res/layout/app_settings.xml: -------------------------------------------------------------------------------- 1 | 23 | 24 | 29 | 32 | 36 | -------------------------------------------------------------------------------- /res/layout/dialog_simple_list.xml: -------------------------------------------------------------------------------- 1 | 23 | 24 | 28 | -------------------------------------------------------------------------------- /res/layout/edit_divider.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 30 | -------------------------------------------------------------------------------- /res/layout/simple_list_item_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 34 | -------------------------------------------------------------------------------- /res/layout/third_party_placeholder.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 29 | 30 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /res/layout/timeline_history_list_divider.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 27 | -------------------------------------------------------------------------------- /res/menu/contact_profile_menu.xml: -------------------------------------------------------------------------------- 1 | 23 | 24 | 25 | 28 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 28 | 35 | -------------------------------------------------------------------------------- /res/xml/contacts.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 32 | 33 | -------------------------------------------------------------------------------- /res/xml/searchable.xml: -------------------------------------------------------------------------------- 1 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /res/xml/syncadapter.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 28 | 33 | -------------------------------------------------------------------------------- /res/xml/widget_provider_info.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 29 | -------------------------------------------------------------------------------- /src/com/vodafone360/people/service/transport/IQueueListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | 26 | package com.vodafone360.people.service.transport; 27 | 28 | /** 29 | * Interface allowing RequestQueue to notify observers about new items available 30 | * in the RequestQueue. 31 | */ 32 | public interface IQueueListener { 33 | /** 34 | * Notifies the implementation that a new request is available in the queue 35 | * and should trigger its delivery to the backend. 36 | */ 37 | void notifyOfItemInRequestQueue(); 38 | } 39 | -------------------------------------------------------------------------------- /src/com/vodafone360/people/service/transport/tcp/ITcpConnectionListener.java: -------------------------------------------------------------------------------- 1 | package com.vodafone360.people.service.transport.tcp; 2 | 3 | public interface ITcpConnectionListener { 4 | 5 | int STATE_CONNECTED = 0; 6 | 7 | int STATE_DISCONNECTED = 1; 8 | 9 | int STATE_CONNECTING = 2; 10 | 11 | void onConnectionStateChanged(int state); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/org/bouncycastle/crypto/CipherParameters.java: -------------------------------------------------------------------------------- 1 | 2 | package org.bouncycastle.crypto; 3 | 4 | /** 5 | * all parameter classes implement this. 6 | */ 7 | public interface CipherParameters { 8 | } 9 | -------------------------------------------------------------------------------- /src/org/bouncycastle/crypto/CryptoException.java: -------------------------------------------------------------------------------- 1 | 2 | package org.bouncycastle.crypto; 3 | 4 | /** 5 | * the foundation class for the hard exceptions thrown by the crypto packages. 6 | */ 7 | public class CryptoException extends Exception { 8 | private static final long serialVersionUID = -1L; 9 | 10 | /** 11 | * base constructor. 12 | */ 13 | public CryptoException() { 14 | } 15 | 16 | /** 17 | * create a CryptoException with the given message. 18 | * 19 | * @param message the message to be carried with the exception. 20 | */ 21 | public CryptoException(String message) { 22 | super(message); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/org/bouncycastle/crypto/DataLengthException.java: -------------------------------------------------------------------------------- 1 | 2 | package org.bouncycastle.crypto; 3 | 4 | /** 5 | * this exception is thrown if a buffer that is meant to have output copied into 6 | * it turns out to be too short, or if we've been given insufficient input. In 7 | * general this exception will get thrown rather than an ArrayOutOfBounds 8 | * exception. 9 | */ 10 | public class DataLengthException extends RuntimeCryptoException { 11 | private static final long serialVersionUID = -1L; 12 | 13 | /** 14 | * base constructor. 15 | */ 16 | public DataLengthException() { 17 | } 18 | 19 | /** 20 | * create a DataLengthException with the given message. 21 | * 22 | * @param message the message to be carried with the exception. 23 | */ 24 | public DataLengthException(String message) { 25 | super(message); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/org/bouncycastle/crypto/InvalidCipherTextException.java: -------------------------------------------------------------------------------- 1 | 2 | package org.bouncycastle.crypto; 3 | 4 | /** 5 | * this exception is thrown whenever we find something we don't expect in a 6 | * message. 7 | */ 8 | public class InvalidCipherTextException extends CryptoException { 9 | private static final long serialVersionUID = -1L; 10 | 11 | /** 12 | * base constructor. 13 | */ 14 | public InvalidCipherTextException() { 15 | } 16 | 17 | /** 18 | * create a InvalidCipherTextException with the given message. 19 | * 20 | * @param message the message to be carried with the exception. 21 | */ 22 | public InvalidCipherTextException(String message) { 23 | super(message); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/org/bouncycastle/crypto/RuntimeCryptoException.java: -------------------------------------------------------------------------------- 1 | 2 | package org.bouncycastle.crypto; 3 | 4 | /** 5 | * the foundation class for the exceptions thrown by the crypto packages. 6 | */ 7 | public class RuntimeCryptoException extends RuntimeException { 8 | private static final long serialVersionUID = -1L; 9 | 10 | /** 11 | * base constructor. 12 | */ 13 | public RuntimeCryptoException() { 14 | } 15 | 16 | /** 17 | * create a RuntimeCryptoException with the given message. 18 | * 19 | * @param message the message to be carried with the exception. 20 | */ 21 | public RuntimeCryptoException(String message) { 22 | super(message); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/org/bouncycastle/crypto/params/AsymmetricKeyParameter.java: -------------------------------------------------------------------------------- 1 | 2 | package org.bouncycastle.crypto.params; 3 | 4 | import org.bouncycastle.crypto.CipherParameters; 5 | 6 | public class AsymmetricKeyParameter implements CipherParameters { 7 | boolean privateKey; 8 | 9 | public AsymmetricKeyParameter(boolean privateKey) { 10 | this.privateKey = privateKey; 11 | } 12 | 13 | public boolean isPrivate() { 14 | return privateKey; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/org/bouncycastle/crypto/params/ParametersWithRandom.java: -------------------------------------------------------------------------------- 1 | 2 | package org.bouncycastle.crypto.params; 3 | 4 | import org.bouncycastle.crypto.CipherParameters; 5 | import java.security.SecureRandom; 6 | 7 | public class ParametersWithRandom implements CipherParameters { 8 | private SecureRandom random; 9 | 10 | private CipherParameters parameters; 11 | 12 | public SecureRandom getRandom() { 13 | return random; 14 | } 15 | 16 | public CipherParameters getParameters() { 17 | return parameters; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/org/bouncycastle/crypto/params/RSAKeyParameters.java: -------------------------------------------------------------------------------- 1 | 2 | package org.bouncycastle.crypto.params; 3 | 4 | import java.math.BigInteger; 5 | 6 | public class RSAKeyParameters extends AsymmetricKeyParameter { 7 | private BigInteger modulus; 8 | 9 | private BigInteger exponent; 10 | 11 | public RSAKeyParameters(boolean isPrivate, BigInteger modulus, BigInteger exponent) { 12 | super(isPrivate); 13 | 14 | this.modulus = modulus; 15 | this.exponent = exponent; 16 | } 17 | 18 | public BigInteger getModulus() { 19 | return modulus; 20 | } 21 | 22 | public BigInteger getExponent() { 23 | return exponent; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/org/bouncycastle/crypto/params/RSAPrivateCrtKeyParameters.java: -------------------------------------------------------------------------------- 1 | 2 | package org.bouncycastle.crypto.params; 3 | 4 | import java.math.BigInteger; 5 | 6 | public class RSAPrivateCrtKeyParameters extends RSAKeyParameters { 7 | private BigInteger p; 8 | 9 | private BigInteger q; 10 | 11 | private BigInteger dP; 12 | 13 | private BigInteger dQ; 14 | 15 | private BigInteger qInv; 16 | 17 | /** 18 | * 19 | */ 20 | public RSAPrivateCrtKeyParameters(BigInteger modulus, BigInteger privateExponent, BigInteger p, 21 | BigInteger q, BigInteger dP, BigInteger dQ, BigInteger qInv) { 22 | super(true, modulus, privateExponent); 23 | 24 | this.p = p; 25 | this.q = q; 26 | this.dP = dP; 27 | this.dQ = dQ; 28 | this.qInv = qInv; 29 | } 30 | 31 | public BigInteger getP() { 32 | return p; 33 | } 34 | 35 | public BigInteger getQ() { 36 | return q; 37 | } 38 | 39 | public BigInteger getDP() { 40 | return dP; 41 | } 42 | 43 | public BigInteger getDQ() { 44 | return dQ; 45 | } 46 | 47 | public BigInteger getQInv() { 48 | return qInv; 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /src/overview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NowPlus Android API Overview 5 | 6 | 7 | The Android version of 360 People is an application that gives the user 8 | extra functionality related to their contacts. 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | tested.project.dir=../ 19 | -------------------------------------------------------------------------------- /tests/default.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 use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Indicates whether an apk should be generated for each density. 11 | split.density=false 12 | # Project target. 13 | target=android-8 14 | apk-configurations= 15 | -------------------------------------------------------------------------------- /tests/res/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/tests/res/.placeholder -------------------------------------------------------------------------------- /tests/res/drawable-hdpi/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/tests/res/drawable-hdpi/.placeholder -------------------------------------------------------------------------------- /tests/res/drawable-ldpi/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/tests/res/drawable-ldpi/.placeholder -------------------------------------------------------------------------------- /tests/res/drawable-mdpi/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/tests/res/drawable-mdpi/.placeholder -------------------------------------------------------------------------------- /tests/res/layout/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/tests/res/layout/.placeholder -------------------------------------------------------------------------------- /tests/res/raw/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/tests/res/raw/.placeholder -------------------------------------------------------------------------------- /tests/res/values/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360/360-Engine-for-Android/96789d4e80f1f5fbcc4023be70162a7bd6e97d91/tests/res/values/.placeholder -------------------------------------------------------------------------------- /tests/src/com/vodafone360/people/tests/engine/IEngineTestFrameworkObserver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | 26 | package com.vodafone360.people.tests.engine; 27 | 28 | import com.vodafone360.people.engine.EngineManager.EngineId; 29 | 30 | public interface IEngineTestFrameworkObserver { 31 | void reportBackToEngine(int reqId, EngineId engine); 32 | void onEngineException(Exception exp); 33 | } 34 | -------------------------------------------------------------------------------- /tests/src/com/vodafone360/people/tests/service/transport/tcp/conn_less/respreader/MockDecoderThread.java: -------------------------------------------------------------------------------- 1 | /* 2 | * CDDL HEADER START 3 | * 4 | * The contents of this file are subject to the terms of the Common Development 5 | * and Distribution License (the "License"). 6 | * You may not use this file except in compliance with the License. 7 | * 8 | * You can obtain a copy of the license at 9 | * src/com/vodafone360/people/VODAFONE.LICENSE.txt or 10 | * http://github.com/360/360-Engine-for-Android 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | * 14 | * When distributing Covered Code, include this CDDL HEADER in each file and 15 | * include the License file at src/com/vodafone360/people/VODAFONE.LICENSE.txt. 16 | * If applicable, add the following below this CDDL HEADER, with the fields 17 | * enclosed by brackets "[]" replaced with your own identifying information: 18 | * Portions Copyright [yyyy] [name of copyright owner] 19 | * 20 | * CDDL HEADER END 21 | * 22 | * Copyright 2010 Vodafone Sales & Services Ltd. All rights reserved. 23 | * Use is subject to license terms. 24 | */ 25 | 26 | package com.vodafone360.people.tests.service.transport.tcp.conn_less.respreader; 27 | 28 | import com.vodafone360.people.service.transport.DecoderThread; 29 | 30 | public class MockDecoderThread extends DecoderThread { 31 | private byte[] response; 32 | 33 | @Override 34 | public void handleResponse(byte[] payload){ 35 | response = payload; 36 | } 37 | 38 | public byte[] getResponse() { 39 | return response; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /tests/src/com/vodafone360/people/tests/testutils/TestStatus.java: -------------------------------------------------------------------------------- 1 | package com.vodafone360.people.tests.testutils; 2 | 3 | /*** 4 | * Object used to store the current state of a running test. 5 | */ 6 | public class TestStatus { 7 | /** Set to TRUE when a prerequisite for passing occurs. **/ 8 | private boolean mPass = false; 9 | 10 | /*** 11 | * Return TRUE if the test prerequisite has occurred, FALSE otherwise. 12 | * 13 | * @return TRUE if the test should pass. 14 | */ 15 | public final boolean isPass() { 16 | return mPass; 17 | } 18 | 19 | /*** 20 | * Specific if a test passing prerequisite has occurred. 21 | * 22 | * @param pass TRUE to pass the test. 23 | */ 24 | public final void setPass(final boolean pass) { 25 | mPass = pass; 26 | } 27 | } --------------------------------------------------------------------------------