├── .gitignore
├── .idea
├── compiler.xml
├── copyright
│ └── profiles_settings.xml
├── gradle.xml
├── misc.xml
├── modules.xml
└── runConfigurations.xml
├── LICENSE
├── README.md
├── app
├── .gitignore
├── build.gradle
├── libs
│ ├── commons-compress-1.11.jar
│ ├── gcm.jar
│ └── liblinphone.jar
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── org
│ │ └── linphone
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── aidl
│ │ └── com
│ │ │ └── android
│ │ │ └── vending
│ │ │ └── billing
│ │ │ └── IInAppBillingService.aidl
│ ├── java
│ │ └── org
│ │ │ └── linphone
│ │ │ ├── AboutFragment.java
│ │ │ ├── AccountPreferencesFragment.java
│ │ │ ├── BandwidthManager.java
│ │ │ ├── BluetoothManager.java
│ │ │ ├── BootReceiver.java
│ │ │ ├── CallActivity.java
│ │ │ ├── CallAudioFragment.java
│ │ │ ├── CallIncomingActivity.java
│ │ │ ├── CallManager.java
│ │ │ ├── CallOutgoingActivity.java
│ │ │ ├── CallVideoFragment.java
│ │ │ ├── ChatFragment.java
│ │ │ ├── ChatListFragment.java
│ │ │ ├── ContactDetailsFragment.java
│ │ │ ├── ContactEditorFragment.java
│ │ │ ├── ContactsListFragment.java
│ │ │ ├── ContactsManager.java
│ │ │ ├── DialerFragment.java
│ │ │ ├── EmptyFragment.java
│ │ │ ├── FragmentsAvailable.java
│ │ │ ├── HistoryDetailFragment.java
│ │ │ ├── HistoryListFragment.java
│ │ │ ├── KeepAliveReceiver.java
│ │ │ ├── LinphoneActivity.java
│ │ │ ├── LinphoneContact.java
│ │ │ ├── LinphoneException.java
│ │ │ ├── LinphoneLauncherActivity.java
│ │ │ ├── LinphoneManager.java
│ │ │ ├── LinphoneNumberOrAddress.java
│ │ │ ├── LinphonePreferences.java
│ │ │ ├── LinphoneService.java
│ │ │ ├── LinphoneUtils.java
│ │ │ ├── NetworkManager.java
│ │ │ ├── PhoneStateChangedReceiver.java
│ │ │ ├── PreferencesMigrator.java
│ │ │ ├── SettingsFragment.java
│ │ │ ├── StatusFragment.java
│ │ │ ├── UIThreadDispatcher.java
│ │ │ ├── assistant
│ │ │ ├── AssistantActivity.java
│ │ │ ├── AssistantFragmentsEnum.java
│ │ │ ├── CodecDownloaderFragment.java
│ │ │ ├── CountryListFragment.java
│ │ │ ├── CreateAccountActivationFragment.java
│ │ │ ├── CreateAccountCodeActivationFragment.java
│ │ │ ├── CreateAccountFragment.java
│ │ │ ├── EchoCancellerCalibrationFragment.java
│ │ │ ├── LinphoneLoginFragment.java
│ │ │ ├── LoginFragment.java
│ │ │ ├── RemoteProvisioningActivity.java
│ │ │ ├── RemoteProvisioningFragment.java
│ │ │ ├── RemoteProvisioningLoginActivity.java
│ │ │ └── WelcomeFragment.java
│ │ │ ├── compatibility
│ │ │ ├── ApiElevenPlus.java
│ │ │ ├── ApiNineteenPlus.java
│ │ │ ├── ApiSixteenPlus.java
│ │ │ ├── ApiTwentyOnePlus.java
│ │ │ ├── ApiTwentyThreePlus.java
│ │ │ ├── Compatibility.java
│ │ │ ├── CompatibilityScaleGestureDetector.java
│ │ │ └── CompatibilityScaleGestureListener.java
│ │ │ ├── gcm
│ │ │ ├── GCMReceiver.java
│ │ │ └── GCMService.java
│ │ │ ├── purchase
│ │ │ ├── InAppPurchaseActivity.java
│ │ │ ├── InAppPurchaseFragment.java
│ │ │ ├── InAppPurchaseHelper.java
│ │ │ ├── InAppPurchaseListFragment.java
│ │ │ ├── InAppPurchaseListener.java
│ │ │ ├── InAppPurchaseListenerBase.java
│ │ │ └── Purchasable.java
│ │ │ ├── sync
│ │ │ ├── AuthenticationService.java
│ │ │ ├── Authenticator.java
│ │ │ ├── SyncAdapter.java
│ │ │ └── SyncService.java
│ │ │ ├── tutorials
│ │ │ ├── AndroidTutorialNotifier.java
│ │ │ ├── TutorialBuddyStatusActivity.java
│ │ │ ├── TutorialCardDavSync.java
│ │ │ ├── TutorialChatRoomActivity.java
│ │ │ ├── TutorialHelloWorldActivity.java
│ │ │ ├── TutorialLauncherActivity.java
│ │ │ └── TutorialRegistrationActivity.java
│ │ │ ├── ui
│ │ │ ├── AddressAware.java
│ │ │ ├── AddressText.java
│ │ │ ├── CallButton.java
│ │ │ ├── Digit.java
│ │ │ ├── EraseButton.java
│ │ │ ├── LedPreference.java
│ │ │ ├── LinphoneOverlay.java
│ │ │ ├── LinphoneScrollView.java
│ │ │ ├── LinphoneSliders.java
│ │ │ ├── Numpad.java
│ │ │ ├── PreferencesListFragment.java
│ │ │ ├── ScrollViewListener.java
│ │ │ └── SlidingDrawer.java
│ │ │ └── xmlrpc
│ │ │ ├── XmlRpcHelper.java
│ │ │ ├── XmlRpcListener.java
│ │ │ └── XmlRpcListenerBase.java
│ ├── jniLibs
│ │ ├── armeabi-v7a
│ │ │ ├── libbctoolbox-armeabi-v7a.so
│ │ │ ├── libbctoolbox-tester-armeabi-v7a.so
│ │ │ ├── libffmpeg-linphone-armeabi-v7a.so
│ │ │ ├── libgnustl_shared.so
│ │ │ ├── liblinphone-armeabi-v7a.so
│ │ │ ├── liblinphonetester-armeabi-v7a.so
│ │ │ ├── libmediastreamer_base-armeabi-v7a.so
│ │ │ ├── libmediastreamer_voip-armeabi-v7a.so
│ │ │ ├── libmssilk.so
│ │ │ ├── libmswebrtc.so
│ │ │ └── libortp-armeabi-v7a.so
│ │ ├── armeabi
│ │ │ ├── libbctoolbox-armeabi.so
│ │ │ ├── libbctoolbox-tester-armeabi.so
│ │ │ ├── libgnustl_shared.so
│ │ │ ├── liblinphone-armeabi.so
│ │ │ ├── liblinphonetester-armeabi.so
│ │ │ ├── libmediastreamer_base-armeabi.so
│ │ │ ├── libmediastreamer_voip-armeabi.so
│ │ │ ├── libmssilk.so
│ │ │ ├── libmswebrtc.so
│ │ │ └── libortp-armeabi.so
│ │ └── x86
│ │ │ ├── libbctoolbox-tester-x86.so
│ │ │ ├── libbctoolbox-x86.so
│ │ │ ├── libffmpeg-linphone-x86.so
│ │ │ ├── libgnustl_shared.so
│ │ │ ├── liblinphone-x86.so
│ │ │ ├── liblinphonetester-x86.so
│ │ │ ├── libmediastreamer_base-x86.so
│ │ │ ├── libmediastreamer_voip-x86.so
│ │ │ ├── libmssilk.so
│ │ │ ├── libmswebrtc.so
│ │ │ └── libortp-x86.so
│ └── res
│ │ ├── anim
│ │ ├── bounce.xml
│ │ ├── slide_in_bottom_to_top.xml
│ │ ├── slide_in_left_to_right.xml
│ │ ├── slide_in_right_to_left.xml
│ │ ├── slide_in_top_to_bottom.xml
│ │ ├── slide_out_bottom_to_top.xml
│ │ ├── slide_out_left_to_right.xml
│ │ ├── slide_out_right_to_left.xml
│ │ └── slide_out_top_to_bottom.xml
│ │ ├── drawable-xhdpi
│ │ ├── add_field_default.png
│ │ ├── add_field_over.png
│ │ ├── arrow_accept.png
│ │ ├── arrow_hangup.png
│ │ ├── avatar.png
│ │ ├── avatar_chat_mask.png
│ │ ├── avatar_chat_mask_outgoing.png
│ │ ├── avatar_mask.png
│ │ ├── avatar_mask_border.png
│ │ ├── back.png
│ │ ├── backspace_default.png
│ │ ├── backspace_disabled.png
│ │ ├── backspace_over.png
│ │ ├── call_add.png
│ │ ├── call_alt_back.png
│ │ ├── call_alt_start.png
│ │ ├── call_audio_start.png
│ │ ├── call_back.png
│ │ ├── call_hangup.png
│ │ ├── call_incoming.png
│ │ ├── call_missed.png
│ │ ├── call_outgoing.png
│ │ ├── call_quality_indicator_0.png
│ │ ├── call_quality_indicator_1.png
│ │ ├── call_quality_indicator_2.png
│ │ ├── call_quality_indicator_3.png
│ │ ├── call_quality_indicator_4.png
│ │ ├── call_start_body_default.png
│ │ ├── call_start_body_disabled.png
│ │ ├── call_start_body_over.png
│ │ ├── call_status_incoming.png
│ │ ├── call_status_missed.png
│ │ ├── call_status_outgoing.png
│ │ ├── call_transfer.png
│ │ ├── call_video_start.png
│ │ ├── camera_default.png
│ │ ├── camera_disabled.png
│ │ ├── camera_selected.png
│ │ ├── camera_switch_default.png
│ │ ├── camera_switch_disabled.png
│ │ ├── camera_switch_over.png
│ │ ├── cancel_edit.png
│ │ ├── chat_add.png
│ │ ├── chat_attachment_default.png
│ │ ├── chat_attachment_over.png
│ │ ├── chat_file_message.png
│ │ ├── chat_list_indicator.png
│ │ ├── chat_message_delivered.png
│ │ ├── chat_message_inprogress.png
│ │ ├── chat_message_not_delivered.png
│ │ ├── chat_picture_over.png
│ │ ├── chat_send_default.png
│ │ ├── chat_send_over.png
│ │ ├── chat_start_body_default.png
│ │ ├── chat_start_body_disabled.png
│ │ ├── chat_start_body_over.png
│ │ ├── checkbox_checked.png
│ │ ├── checkbox_unchecked.png
│ │ ├── clean_field_default.png
│ │ ├── clean_field_over.png
│ │ ├── conference_exit_default.png
│ │ ├── conference_exit_over.png
│ │ ├── conference_start.png
│ │ ├── contact.png
│ │ ├── contact_add.png
│ │ ├── contact_add_disabled.png
│ │ ├── contacts_all_default.png
│ │ ├── contacts_all_selected.png
│ │ ├── contacts_sip_default.png
│ │ ├── contacts_sip_selected.png
│ │ ├── delete.png
│ │ ├── delete_disabled.png
│ │ ├── delete_field_default.png
│ │ ├── delete_field_over.png
│ │ ├── deselect_all.png
│ │ ├── dialer_alt_back.png
│ │ ├── dialer_back.png
│ │ ├── dialer_background.png
│ │ ├── edit.png
│ │ ├── edit_list.png
│ │ ├── edit_list_disabled.png
│ │ ├── fast_scroll_default.png
│ │ ├── fast_scroll_over.png
│ │ ├── footer_chat.png
│ │ ├── footer_contacts.png
│ │ ├── footer_dialer.png
│ │ ├── footer_history.png
│ │ ├── history_all_default.png
│ │ ├── history_all_selected.png
│ │ ├── history_chat_indicator.png
│ │ ├── history_missed_default.png
│ │ ├── history_missed_selected.png
│ │ ├── info.png
│ │ ├── led_connected.png
│ │ ├── led_disconnected.png
│ │ ├── led_error.png
│ │ ├── led_inprogress.png
│ │ ├── linphone_logo.png
│ │ ├── linphone_logo_orange.png
│ │ ├── linphone_notification_icon.png
│ │ ├── linphone_user.png
│ │ ├── list_details_default.png
│ │ ├── list_details_over.png
│ │ ├── menu.png
│ │ ├── menu_disabled.png
│ │ ├── micro_default.png
│ │ ├── micro_disabled.png
│ │ ├── micro_selected.png
│ │ ├── numpad_0.png
│ │ ├── numpad_0_over.png
│ │ ├── numpad_1.png
│ │ ├── numpad_1_over.png
│ │ ├── numpad_2.png
│ │ ├── numpad_2_over.png
│ │ ├── numpad_3.png
│ │ ├── numpad_3_over.png
│ │ ├── numpad_4.png
│ │ ├── numpad_4_over.png
│ │ ├── numpad_5.png
│ │ ├── numpad_5_over.png
│ │ ├── numpad_6.png
│ │ ├── numpad_6_over.png
│ │ ├── numpad_7.png
│ │ ├── numpad_7_over.png
│ │ ├── numpad_8.png
│ │ ├── numpad_8_over.png
│ │ ├── numpad_9.png
│ │ ├── numpad_9_over.png
│ │ ├── numpad_hash.png
│ │ ├── numpad_hash_over.png
│ │ ├── numpad_star.png
│ │ ├── numpad_star_over.png
│ │ ├── options_add_call.png
│ │ ├── options_add_call_disabled.png
│ │ ├── options_default.png
│ │ ├── options_disabled.png
│ │ ├── options_selected.png
│ │ ├── options_start_conference.png
│ │ ├── options_start_conference_disabled.png
│ │ ├── options_transfer_call.png
│ │ ├── options_transfer_call_disabled.png
│ │ ├── pause_big_default.png
│ │ ├── pause_big_disabled.png
│ │ ├── pause_big_over_selected.png
│ │ ├── pause_small_default.png
│ │ ├── pause_small_disabled.png
│ │ ├── pause_small_over_selected.png
│ │ ├── quit_default.png
│ │ ├── quit_over.png
│ │ ├── resizable_assistant_button.9.png
│ │ ├── resizable_assistant_button_disabled.9.png
│ │ ├── resizable_assistant_button_over.9.png
│ │ ├── resizable_cancel_button.9.png
│ │ ├── resizable_chat_bubble_incoming.9.png
│ │ ├── resizable_chat_bubble_outgoing.9.png
│ │ ├── resizable_confirm_delete_button.9.png
│ │ ├── resizable_textfield.9.png
│ │ ├── resizable_textfield_error.9.png
│ │ ├── route_bluetooth.png
│ │ ├── route_bluetooth_selected.png
│ │ ├── route_earpiece.png
│ │ ├── route_earpiece_selected.png
│ │ ├── route_speaker.png
│ │ ├── route_speaker_selected.png
│ │ ├── routes_default.png
│ │ ├── routes_selected.png
│ │ ├── security_ko.png
│ │ ├── security_ok.png
│ │ ├── security_pending.png
│ │ ├── select_all.png
│ │ ├── speaker_default.png
│ │ ├── speaker_disabled.png
│ │ ├── speaker_selected.png
│ │ ├── splashscreen.png
│ │ ├── status_available.png
│ │ ├── status_available_desktop.png
│ │ ├── status_available_phone.png
│ │ ├── status_away.png
│ │ ├── status_away_desktop.png
│ │ ├── status_away_phone.png
│ │ ├── status_busy.png
│ │ ├── status_busy_desktop.png
│ │ ├── status_busy_phone.png
│ │ ├── status_disconnected.png
│ │ ├── status_disconnected_desktop.png
│ │ ├── status_disconnected_phone.png
│ │ ├── topbar_avatar.png
│ │ ├── topbar_call_notification.png
│ │ ├── topbar_chat_notification.png
│ │ ├── topbar_videocall_notification.png
│ │ ├── valid.png
│ │ ├── valid_disabled.png
│ │ ├── voicemail.png
│ │ └── waiting_time.png
│ │ ├── drawable
│ │ ├── assistant_button.xml
│ │ ├── assistant_button_text_color.xml
│ │ ├── backspace.xml
│ │ ├── button_background.xml
│ │ ├── call.xml
│ │ ├── camera_button.xml
│ │ ├── chat.xml
│ │ ├── chat_send_file.xml
│ │ ├── chat_send_message.xml
│ │ ├── checkbox.xml
│ │ ├── contact_add_button.xml
│ │ ├── contacts_all.xml
│ │ ├── contacts_sip.xml
│ │ ├── delete_button.xml
│ │ ├── dialer.xml
│ │ ├── edit_list_button.xml
│ │ ├── fast_scroll.xml
│ │ ├── fast_scroll_preview.xml
│ │ ├── footer_button.xml
│ │ ├── hangup.xml
│ │ ├── history_all.xml
│ │ ├── history_missed.xml
│ │ ├── list_delete.xml
│ │ ├── list_detail.xml
│ │ ├── list_selector.xml
│ │ ├── menu_burger.xml
│ │ ├── micro.xml
│ │ ├── numpad_eight.xml
│ │ ├── numpad_five.xml
│ │ ├── numpad_four.xml
│ │ ├── numpad_nine.xml
│ │ ├── numpad_one.xml
│ │ ├── numpad_seven.xml
│ │ ├── numpad_sharp.xml
│ │ ├── numpad_six.xml
│ │ ├── numpad_star_digit.xml
│ │ ├── numpad_three.xml
│ │ ├── numpad_two.xml
│ │ ├── numpad_zero.xml
│ │ ├── options_add_call_button.xml
│ │ ├── options_start_conference_button.xml
│ │ ├── options_transfer_call_button.xml
│ │ ├── pause.xml
│ │ ├── quit.xml
│ │ ├── speaker.xml
│ │ ├── status_level.xml
│ │ ├── switch_camera.xml
│ │ └── toolbar_button.xml
│ │ ├── layout-land
│ │ ├── about.xml
│ │ ├── assistant_codec_downloader.xml
│ │ ├── call.xml
│ │ ├── call_incoming.xml
│ │ ├── call_outgoing.xml
│ │ ├── chatlist_cell.xml
│ │ ├── dialer.xml
│ │ ├── launch_screen.xml
│ │ ├── main.xml
│ │ ├── search_contact_cell.xml
│ │ ├── video.xml
│ │ └── video_no_opengl.xml
│ │ ├── layout-sw533dp-land
│ │ ├── assistant_account_creation.xml
│ │ ├── assistant_codec_downloader.xml
│ │ ├── assistant_linphone_login.xml
│ │ ├── assistant_login.xml
│ │ ├── assistant_welcome.xml
│ │ ├── call.xml
│ │ ├── call_incoming.xml
│ │ ├── call_outgoing.xml
│ │ ├── chatlist_cell.xml
│ │ ├── dialer.xml
│ │ ├── main.xml
│ │ ├── video.xml
│ │ └── video_no_opengl.xml
│ │ ├── layout-sw533dp
│ │ ├── assistant_codec_downloader.xml
│ │ ├── chatlist_cell.xml
│ │ ├── dialer.xml
│ │ └── main.xml
│ │ ├── layout-sw720dp-land
│ │ ├── assistant_codec_downloader.xml
│ │ ├── video.xml
│ │ └── video_no_opengl.xml
│ │ ├── layout
│ │ ├── about.xml
│ │ ├── assistant.xml
│ │ ├── assistant_account_creation.xml
│ │ ├── assistant_account_creation_code_activation.xml
│ │ ├── assistant_account_creation_email_activation.xml
│ │ ├── assistant_codec_downloader.xml
│ │ ├── assistant_country_list.xml
│ │ ├── assistant_ec_calibration.xml
│ │ ├── assistant_linphone_login.xml
│ │ ├── assistant_login.xml
│ │ ├── assistant_remote_provisioning.xml
│ │ ├── assistant_remote_provisioning_login.xml
│ │ ├── assistant_topbar.xml
│ │ ├── assistant_welcome.xml
│ │ ├── audio.xml
│ │ ├── call.xml
│ │ ├── call_inactive_row.xml
│ │ ├── call_incoming.xml
│ │ ├── call_outgoing.xml
│ │ ├── chat.xml
│ │ ├── chat_bubble.xml
│ │ ├── chatlist.xml
│ │ ├── chatlist_cell.xml
│ │ ├── conf_call_control_row.xml
│ │ ├── conference_header.xml
│ │ ├── conference_paused_row.xml
│ │ ├── contact.xml
│ │ ├── contact_cell.xml
│ │ ├── contact_control_row.xml
│ │ ├── contact_edit.xml
│ │ ├── contact_edit_row.xml
│ │ ├── contacts_list.xml
│ │ ├── country_cell.xml
│ │ ├── dialer.xml
│ │ ├── dialog.xml
│ │ ├── edit_list.xml
│ │ ├── empty_fragment.xml
│ │ ├── hello_world.xml
│ │ ├── hidden.xml
│ │ ├── history.xml
│ │ ├── history_cell.xml
│ │ ├── history_detail.xml
│ │ ├── in_app.xml
│ │ ├── in_app_list.xml
│ │ ├── in_app_purchase_item.xml
│ │ ├── in_app_store.xml
│ │ ├── incall_stats.xml
│ │ ├── input_dialog.xml
│ │ ├── launch_screen.xml
│ │ ├── main.xml
│ │ ├── new_password.xml
│ │ ├── numpad.xml
│ │ ├── preference_led.xml
│ │ ├── preference_list_content.xml
│ │ ├── progress_dialog.xml
│ │ ├── remote_provisioning.xml
│ │ ├── search_contact_cell.xml
│ │ ├── settings.xml
│ │ ├── side_menu_account_cell.xml
│ │ ├── side_menu_item_cell.xml
│ │ ├── side_menu_main_account.xml
│ │ ├── status.xml
│ │ ├── toast.xml
│ │ ├── tuto_carddav.xml
│ │ ├── tutorials.xml
│ │ ├── video.xml
│ │ ├── video_no_opengl.xml
│ │ └── zrtp_dialog.xml
│ │ ├── mipmap-hdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-mdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xhdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xxhdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xxxhdpi
│ │ └── ic_launcher.png
│ │ ├── raw-sw600dp
│ │ └── linphonerc_default
│ │ ├── raw
│ │ ├── hold.mkv
│ │ ├── incoming_chat.wav
│ │ ├── linphonerc_default
│ │ ├── linphonerc_factory
│ │ ├── lpconfig.xsd
│ │ ├── notes_of_the_optimistic.mkv
│ │ ├── oldphone_mono.wav
│ │ ├── ringback.wav
│ │ └── rootca.pem
│ │ ├── values-ar
│ │ └── strings.xml
│ │ ├── values-de
│ │ └── strings.xml
│ │ ├── values-es
│ │ └── strings.xml
│ │ ├── values-fi
│ │ └── strings.xml
│ │ ├── values-fr
│ │ └── strings.xml
│ │ ├── values-he
│ │ └── strings.xml
│ │ ├── values-ja
│ │ └── strings.xml
│ │ ├── values-nl
│ │ └── strings.xml
│ │ ├── values-pl
│ │ └── strings.xml
│ │ ├── values-pt-rBR
│ │ └── strings.xml
│ │ ├── values-ru
│ │ └── strings.xml
│ │ ├── values-sr
│ │ └── strings.xml
│ │ ├── values-sv
│ │ └── strings.xml
│ │ ├── values-sw533dp
│ │ └── non_localizable_strings.xml
│ │ ├── values-tr
│ │ └── strings.xml
│ │ ├── values-zh-rCN
│ │ └── strings.xml
│ │ ├── values-zh-rTW
│ │ └── strings.xml
│ │ ├── values
│ │ ├── attrs.xml
│ │ ├── color.xml
│ │ ├── colors.xml
│ │ ├── digit_style.xml
│ │ ├── non_localizable_custom.xml
│ │ ├── non_localizable_strings.xml
│ │ ├── slidingtab_style.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ │ └── xml
│ │ ├── account_preferences.xml
│ │ ├── authenticator.xml
│ │ ├── contacts.xml
│ │ ├── preferences.xml
│ │ └── syncadapter.xml
│ └── test
│ └── java
│ └── org
│ └── linphone
│ └── ExampleUnitTest.java
├── build.gradle
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
17 |
18 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 25
5 | buildToolsVersion "25.0.2"
6 | defaultConfig {
7 | applicationId "org.linphone"
8 | minSdkVersion 15
9 | targetSdkVersion 25
10 | versionCode 1
11 | versionName "1.0"
12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
13 | }
14 | buildTypes {
15 | release {
16 | minifyEnabled false
17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18 | }
19 | }
20 | }
21 |
22 | dependencies {
23 | compile fileTree(dir: 'libs', include: ['*.jar'])
24 | androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
25 | exclude group: 'com.android.support', module: 'support-annotations'
26 | })
27 | compile 'com.android.support:appcompat-v7:25.3.1'
28 | testCompile 'junit:junit:4.12'
29 | }
30 |
--------------------------------------------------------------------------------
/app/libs/commons-compress-1.11.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/libs/commons-compress-1.11.jar
--------------------------------------------------------------------------------
/app/libs/gcm.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/libs/gcm.jar
--------------------------------------------------------------------------------
/app/libs/liblinphone.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/libs/liblinphone.jar
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in D:\Android\sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/app/src/androidTest/java/org/linphone/ExampleInstrumentedTest.java:
--------------------------------------------------------------------------------
1 | package org.linphone;
2 |
3 | import android.content.Context;
4 | import android.support.test.InstrumentationRegistry;
5 | import android.support.test.runner.AndroidJUnit4;
6 |
7 | import org.junit.Test;
8 | import org.junit.runner.RunWith;
9 |
10 | import static org.junit.Assert.*;
11 |
12 | /**
13 | * Instrumentation test, which will execute on an Android device.
14 | *
15 | * @see Testing documentation
16 | */
17 | @RunWith(AndroidJUnit4.class)
18 | public class ExampleInstrumentedTest {
19 | @Test
20 | public void useAppContext() throws Exception {
21 | // Context of the app under test.
22 | Context appContext = InstrumentationRegistry.getTargetContext();
23 |
24 | assertEquals("org.linphone", appContext.getPackageName());
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/BootReceiver.java:
--------------------------------------------------------------------------------
1 | /*
2 | BootReceiver.java
3 | Copyright (C) 2010 Belledonne Communications, Grenoble, France
4 |
5 | This program is free software; you can redistribute it and/or
6 | modify it under the terms of the GNU General Public License
7 | as published by the Free Software Foundation; either version 2
8 | of the License, or (at your option) any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program; if not, write to the Free Software
17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 | package org.linphone;
20 |
21 | import org.linphone.core.LinphoneCoreFactory;
22 | import org.linphone.core.LpConfig;
23 | import org.linphone.mediastream.Log;
24 |
25 | import android.content.BroadcastReceiver;
26 | import android.content.Context;
27 | import android.content.Intent;
28 |
29 | public class BootReceiver extends BroadcastReceiver {
30 |
31 | @Override
32 | public void onReceive(Context context, Intent intent) {
33 | if (intent.getAction().equalsIgnoreCase(Intent.ACTION_SHUTDOWN)) {
34 | Log.w("Device is shutting down, destroying LinphoneCore to unregister");
35 | LinphoneManager.destroy();
36 | } else {
37 | String path = context.getFilesDir().getAbsolutePath() + "/.linphonerc";
38 | LpConfig lpConfig = LinphoneCoreFactory.instance().createLpConfig(path);
39 | if (lpConfig.getBool("app", "auto_start", false)) {
40 | Intent lLinphoneServiceIntent = new Intent(Intent.ACTION_MAIN);
41 | lLinphoneServiceIntent.setClass(context, LinphoneService.class);
42 | context.startService(lLinphoneServiceIntent);
43 | }
44 | }
45 | }
46 | }
47 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/EmptyFragment.java:
--------------------------------------------------------------------------------
1 | package org.linphone;
2 | /*
3 | AboutFragment.java
4 | Copyright (C) 2012 Belledonne Communications, Grenoble, France
5 |
6 | This program is free software; you can redistribute it and/or
7 | modify it under the terms of the GNU General Public License
8 | as published by the Free Software Foundation; either version 2
9 | of the License, or (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program; if not, write to the Free Software
18 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 | */
20 |
21 | import android.os.Bundle;
22 | import android.app.Fragment;
23 | import android.view.LayoutInflater;
24 | import android.view.View;
25 | import android.view.ViewGroup;
26 |
27 | /**
28 | * @author Sylvain Berfini
29 | */
30 | public class EmptyFragment extends Fragment {
31 |
32 | @Override
33 | public View onCreateView(LayoutInflater inflater, ViewGroup container,
34 | Bundle savedInstanceState) {
35 |
36 | View view = inflater.inflate(R.layout.empty_fragment, container, false);
37 | return view;
38 | }
39 |
40 | }
41 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/LinphoneException.java:
--------------------------------------------------------------------------------
1 | /*
2 | LinphoneCoreException.java
3 | Copyright (C) 2010 Belledonne Communications, Grenoble, France
4 |
5 | This program is free software; you can redistribute it and/or
6 | modify it under the terms of the GNU General Public License
7 | as published by the Free Software Foundation; either version 2
8 | of the License, or (at your option) any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program; if not, write to the Free Software
17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 | package org.linphone;
20 |
21 | @SuppressWarnings("serial")
22 | public class LinphoneException extends Exception {
23 |
24 | public LinphoneException() {}
25 |
26 | public LinphoneException(String detailMessage) {
27 | super(detailMessage);
28 | }
29 |
30 | public LinphoneException(Throwable throwable) {
31 | super(throwable);
32 | }
33 |
34 | public LinphoneException(String detailMessage, Throwable throwable) {
35 | super(detailMessage, throwable);
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/LinphoneNumberOrAddress.java:
--------------------------------------------------------------------------------
1 | /*
2 | LinphoneNumberOrAddress.java
3 | Copyright (C) 2016 Belledonne Communications, Grenoble, France
4 |
5 | This program is free software; you can redistribute it and/or
6 | modify it under the terms of the GNU General Public License
7 | as published by the Free Software Foundation; either version 2
8 | of the License, or (at your option) any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program; if not, write to the Free Software
17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 |
20 | package org.linphone;
21 |
22 | import java.io.Serializable;
23 |
24 | public class LinphoneNumberOrAddress implements Serializable, Comparable {
25 | /**
26 | *
27 | */
28 | private static final long serialVersionUID = -2301689469730072896L;
29 |
30 | private boolean isSIPAddress;
31 | private String value, oldValueForUpdatePurpose;
32 |
33 | public LinphoneNumberOrAddress(String v, boolean isSIP) {
34 | value = v;
35 | isSIPAddress = isSIP;
36 | oldValueForUpdatePurpose = null;
37 | }
38 |
39 | public LinphoneNumberOrAddress(String v, boolean isSip, String old) {
40 | this(v, isSip);
41 | oldValueForUpdatePurpose = old;
42 | }
43 |
44 | @Override
45 | public int compareTo(LinphoneNumberOrAddress noa) {
46 | if (noa.isSIPAddress() == isSIPAddress()) {
47 | return noa.getValue().compareTo(getValue());
48 | } else {
49 | return isSIPAddress() ? -1 : 1;
50 | }
51 | }
52 |
53 | public boolean isSIPAddress() {
54 | return isSIPAddress;
55 | }
56 |
57 | public String getOldValue() {
58 | return oldValueForUpdatePurpose;
59 | }
60 |
61 | public void setOldValue(String v) {
62 | oldValueForUpdatePurpose = v;
63 | }
64 |
65 | public String getValue() {
66 | return value;
67 | }
68 |
69 | public void setValue(String v) {
70 | value = v;
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/NetworkManager.java:
--------------------------------------------------------------------------------
1 | /*
2 | ContactPickerActivity.java
3 | Copyright (C) 2010 Belledonne Communications, Grenoble, France
4 |
5 | This program is free software; you can redistribute it and/or
6 | modify it under the terms of the GNU General Public License
7 | as published by the Free Software Foundation; either version 2
8 | of the License, or (at your option) any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program; if not, write to the Free Software
17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 | package org.linphone;
20 |
21 | import android.content.BroadcastReceiver;
22 | import android.content.Context;
23 | import android.content.Intent;
24 | import android.net.ConnectivityManager;
25 |
26 |
27 |
28 | /**
29 | *
30 | * Intercept network state changes and update linphone core through LinphoneManager.
31 | *
32 | */
33 | public class NetworkManager extends BroadcastReceiver {
34 |
35 | @Override
36 | public void onReceive(Context context, Intent intent) {
37 | ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
38 | Boolean lNoConnectivity = intent.getBooleanExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY,false);
39 | if (LinphoneManager.isInstanciated()) {
40 | LinphoneManager.getInstance().connectivityChanged(cm, lNoConnectivity);
41 | }
42 | }
43 |
44 | }
45 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/PhoneStateChangedReceiver.java:
--------------------------------------------------------------------------------
1 | /*
2 | PhoneStateReceiver.java
3 | Copyright (C) 2011 Belledonne Communications, Grenoble, France
4 |
5 | This program is free software; you can redistribute it and/or
6 | modify it under the terms of the GNU General Public License
7 | as published by the Free Software Foundation; either version 2
8 | of the License, or (at your option) any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program; if not, write to the Free Software
17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 | package org.linphone;
20 |
21 | import android.content.BroadcastReceiver;
22 | import android.content.Context;
23 | import android.content.Intent;
24 | import android.telephony.TelephonyManager;
25 |
26 | /**
27 | * Pause current SIP calls when GSM phone rings or is active.
28 | *
29 | * @author Guillaume Beraudo
30 | *
31 | */
32 | public class PhoneStateChangedReceiver extends BroadcastReceiver {
33 | @Override
34 | public void onReceive(Context context, Intent intent) {
35 | final String extraState = intent.getStringExtra(TelephonyManager.EXTRA_STATE);
36 |
37 | if (TelephonyManager.EXTRA_STATE_RINGING.equals(extraState) || TelephonyManager.EXTRA_STATE_OFFHOOK.equals(extraState)) {
38 | LinphoneManager.setGsmIdle(false);
39 | if (!LinphoneManager.isInstanciated()) {
40 | return;
41 | }
42 | LinphoneManager.getLc().pauseAllCalls();
43 | } else if (TelephonyManager.EXTRA_STATE_IDLE.equals(extraState)) {
44 | LinphoneManager.setGsmIdle(true);
45 | }
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/UIThreadDispatcher.java:
--------------------------------------------------------------------------------
1 | /*
2 | UIThreadDispatcher.java
3 | Copyright (C) 2014 Belledonne Communications, Grenoble, France
4 |
5 | This program is free software; you can redistribute it and/or
6 | modify it under the terms of the GNU General Public License
7 | as published by the Free Software Foundation; either version 2
8 | of the License, or (at your option) any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program; if not, write to the Free Software
17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 | package org.linphone;
20 |
21 | import android.os.Handler;
22 | import android.os.Looper;
23 |
24 | public class UIThreadDispatcher {
25 | private static Handler mHandler = new Handler(Looper.getMainLooper());
26 |
27 | public static void dispatch(Runnable r) {
28 | mHandler.post(r);
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/assistant/AssistantFragmentsEnum.java:
--------------------------------------------------------------------------------
1 | package org.linphone.assistant;
2 | /*
3 | AssistantFragmentsEnum.java
4 | Copyright (C) 2015 Belledonne Communications, Grenoble, France
5 |
6 | This program is free software; you can redistribute it and/or
7 | modify it under the terms of the GNU General Public License
8 | as published by the Free Software Foundation; either version 2
9 | of the License, or (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program; if not, write to the Free Software
18 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 | */
20 | /**
21 | * @author Sylvain Berfini
22 | */
23 | public enum AssistantFragmentsEnum {
24 | WELCOME,
25 | CREATE_ACCOUNT,
26 | CREATE_ACCOUNT_ACTIVATION,
27 | CREATE_ACCOUNT_CODE_ACTIVATION,
28 | LINPHONE_LOGIN,
29 | COUNTRY_CHOOSER,
30 | LOGIN,
31 | REMOTE_PROVISIONING,
32 | ECHO_CANCELLER_CALIBRATION,
33 | DOWNLOAD_CODEC;
34 | }
35 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/compatibility/ApiNineteenPlus.java:
--------------------------------------------------------------------------------
1 | package org.linphone.compatibility;
2 |
3 | import android.annotation.TargetApi;
4 | import android.app.AlarmManager;
5 | import android.app.PendingIntent;
6 |
7 | /*ApiNineteenPlus.java
8 | Copyright (C) 2012 Belledonne Communications, Grenoble, France
9 |
10 | This program is free software; you can redistribute it and/or
11 | modify it under the terms of the GNU General Public License
12 | as published by the Free Software Foundation; either version 2
13 | of the License, or (at your option) any later version.
14 |
15 | This program is distributed in the hope that it will be useful,
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 | GNU General Public License for more details.
19 |
20 | You should have received a copy of the GNU General Public License
21 | along with this program; if not, write to the Free Software
22 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 | */
24 | /**
25 | * @author Sylvain Berfini
26 | */
27 | @TargetApi(19)
28 | public class ApiNineteenPlus {
29 | public static void scheduleAlarm(AlarmManager alarmManager, int type, long triggerAtMillis, PendingIntent operation) {
30 | alarmManager.setExact(type, triggerAtMillis, operation);
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/compatibility/ApiTwentyThreePlus.java:
--------------------------------------------------------------------------------
1 | package org.linphone.compatibility;
2 |
3 | import android.widget.TextView;
4 | import android.annotation.TargetApi;
5 |
6 | /*
7 | ApiTwentyThreePlus.java
8 | Copyright (C) 2012 Belledonne Communications, Grenoble, France
9 |
10 | This program is free software; you can redistribute it and/or
11 | modify it under the terms of the GNU General Public License
12 | as published by the Free Software Foundation; either version 2
13 | of the License, or (at your option) any later version.
14 |
15 | This program is distributed in the hope that it will be useful,
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 | GNU General Public License for more details.
19 |
20 | You should have received a copy of the GNU General Public License
21 | along with this program; if not, write to the Free Software
22 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 | */
24 | /**
25 | * @author Sylvain Berfini
26 | */
27 | @TargetApi(23)
28 | public class ApiTwentyThreePlus {
29 | public static void setTextAppearance(TextView textview, int style) {
30 | textview.setTextAppearance(style);
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/compatibility/CompatibilityScaleGestureDetector.java:
--------------------------------------------------------------------------------
1 | package org.linphone.compatibility;
2 |
3 | import android.annotation.TargetApi;
4 | import android.content.Context;
5 | import android.view.MotionEvent;
6 | import android.view.ScaleGestureDetector;
7 |
8 | @TargetApi(8)
9 | public class CompatibilityScaleGestureDetector extends ScaleGestureDetector.SimpleOnScaleGestureListener {
10 | private ScaleGestureDetector detector;
11 | private CompatibilityScaleGestureListener listener;
12 |
13 | public CompatibilityScaleGestureDetector(Context context) {
14 | detector = new ScaleGestureDetector(context, this);
15 | }
16 |
17 | public void setOnScaleListener(CompatibilityScaleGestureListener newListener) {
18 | listener = newListener;
19 | }
20 |
21 | public boolean onTouchEvent(MotionEvent event) {
22 | return detector.onTouchEvent(event);
23 | }
24 |
25 | @Override
26 | public boolean onScale(ScaleGestureDetector detector) {
27 | if (listener == null) {
28 | return false;
29 | }
30 |
31 | return listener.onScale(this);
32 | }
33 |
34 | public float getScaleFactor() {
35 | return detector.getScaleFactor();
36 | }
37 |
38 | public void destroy() {
39 | listener = null;
40 | detector = null;
41 | }
42 | }
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/compatibility/CompatibilityScaleGestureListener.java:
--------------------------------------------------------------------------------
1 | package org.linphone.compatibility;
2 |
3 |
4 | public interface CompatibilityScaleGestureListener {
5 | public boolean onScale(CompatibilityScaleGestureDetector detector);
6 | }
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/gcm/GCMReceiver.java:
--------------------------------------------------------------------------------
1 | package org.linphone.gcm;
2 | /*
3 | GCMReceiver.java
4 | Copyright (C) 2012 Belledonne Communications, Grenoble, France
5 |
6 | This program is free software; you can redistribute it and/or
7 | modify it under the terms of the GNU General Public License
8 | as published by the Free Software Foundation; either version 2
9 | of the License, or (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program; if not, write to the Free Software
18 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 | */
20 |
21 | import android.content.Context;
22 |
23 | import com.google.android.gcm.GCMBroadcastReceiver;
24 |
25 | /**
26 | * @author Sylvain Berfini
27 | */
28 | public class GCMReceiver extends GCMBroadcastReceiver {
29 | @Override
30 | protected String getGCMIntentServiceClassName(Context context) {
31 | return "org.linphone.gcm.GCMService";
32 | }
33 | }
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/purchase/InAppPurchaseListenerBase.java:
--------------------------------------------------------------------------------
1 | package org.linphone.purchase;
2 |
3 | import java.util.ArrayList;
4 |
5 | public class InAppPurchaseListenerBase implements InAppPurchaseListener {
6 | @Override
7 | public void onServiceAvailableForQueries() {
8 | // TODO Auto-generated method stub
9 |
10 | }
11 |
12 | @Override
13 | public void onAvailableItemsForPurchaseQueryFinished(ArrayList items) {
14 | // TODO Auto-generated method stub
15 |
16 | }
17 |
18 | @Override
19 | public void onPurchasedItemsQueryFinished(ArrayList items) {
20 | // TODO Auto-generated method stub
21 |
22 | }
23 |
24 | @Override
25 | public void onPurchasedItemConfirmationQueryFinished(boolean success) {
26 | // TODO Auto-generated method stub
27 |
28 | }
29 |
30 | @Override
31 | public void onRecoverAccountSuccessful(boolean success) {
32 | // TODO Auto-generated method stub
33 |
34 | }
35 |
36 | @Override
37 | public void onActivateAccountSuccessful(boolean success) {
38 | // TODO Auto-generated method stub
39 |
40 | }
41 |
42 | @Override
43 | public void onError(String error) {
44 | // TODO Auto-generated method stub
45 |
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/sync/AuthenticationService.java:
--------------------------------------------------------------------------------
1 | package org.linphone.sync;
2 |
3 | /*
4 | AuthenticationService.java
5 | Copyright (C) 2015 Belledonne Communications, Grenoble, France
6 |
7 | This program is free software; you can redistribute it and/or
8 | modify it under the terms of the GNU General Public License
9 | as published by the Free Software Foundation; either version 2
10 | of the License, or (at your option) any later version.
11 |
12 | This program is distributed in the hope that it will be useful,
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | GNU General Public License for more details.
16 |
17 | You should have received a copy of the GNU General Public License
18 | along with this program; if not, write to the Free Software
19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 | */
21 |
22 |
23 | import android.app.Service;
24 | import android.content.Intent;
25 | import android.os.IBinder;
26 |
27 | public class AuthenticationService extends Service {
28 |
29 | private Authenticator mAuthenticator;
30 | @Override
31 | public void onCreate() {
32 | mAuthenticator = new Authenticator(this);
33 | }
34 |
35 | @Override
36 | public IBinder onBind(Intent intent) {
37 | return mAuthenticator.getIBinder();
38 | }
39 | }
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/sync/SyncAdapter.java:
--------------------------------------------------------------------------------
1 | package org.linphone.sync;
2 |
3 | /*
4 | SyncAdapter.java
5 | Copyright (C) 2015 Belledonne Communications, Grenoble, France
6 |
7 | This program is free software; you can redistribute it and/or
8 | modify it under the terms of the GNU General Public License
9 | as published by the Free Software Foundation; either version 2
10 | of the License, or (at your option) any later version.
11 |
12 | This program is distributed in the hope that it will be useful,
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | GNU General Public License for more details.
16 |
17 | You should have received a copy of the GNU General Public License
18 | along with this program; if not, write to the Free Software
19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 | */
21 |
22 | import android.accounts.Account;
23 | import android.content.AbstractThreadedSyncAdapter;
24 | import android.content.ContentProviderClient;
25 | import android.content.Context;
26 | import android.content.SyncResult;
27 | import android.os.Bundle;
28 |
29 | public class SyncAdapter extends AbstractThreadedSyncAdapter {
30 |
31 | public SyncAdapter(Context context, boolean autoInitialize) {
32 | super(context, autoInitialize);
33 | }
34 |
35 | @Override
36 | public void onPerformSync(Account account, Bundle extras, String authority,
37 | ContentProviderClient provider, SyncResult syncResult) {
38 | }
39 | }
40 |
41 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/sync/SyncService.java:
--------------------------------------------------------------------------------
1 | package org.linphone.sync;
2 |
3 | /*
4 | SyncService.java
5 | Copyright (C) 2015 Belledonne Communications, Grenoble, France
6 |
7 | This program is free software; you can redistribute it and/or
8 | modify it under the terms of the GNU General Public License
9 | as published by the Free Software Foundation; either version 2
10 | of the License, or (at your option) any later version.
11 |
12 | This program is distributed in the hope that it will be useful,
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | GNU General Public License for more details.
16 |
17 | You should have received a copy of the GNU General Public License
18 | along with this program; if not, write to the Free Software
19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 | */
21 |
22 |
23 | import android.app.Service;
24 | import android.content.Intent;
25 | import android.os.IBinder;
26 |
27 | public class SyncService extends Service {
28 | private static SyncAdapter sSyncAdapter = null;
29 | private static final Object sSyncAdapterLock = new Object();
30 |
31 | @Override
32 | public void onCreate() {
33 |
34 | synchronized (sSyncAdapterLock) {
35 | if (sSyncAdapter == null) {
36 | sSyncAdapter = new SyncAdapter(getApplicationContext(), true);
37 | }
38 | }
39 | }
40 |
41 | @Override
42 | public IBinder onBind(Intent intent) {
43 | return sSyncAdapter.getSyncAdapterBinder();
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/tutorials/AndroidTutorialNotifier.java:
--------------------------------------------------------------------------------
1 | /*
2 | AndroidTutorialNotifier.java
3 | Copyright (C) 2010 Belledonne Communications, Grenoble, France
4 |
5 | This program is free software; you can redistribute it and/or
6 | modify it under the terms of the GNU General Public License
7 | as published by the Free Software Foundation; either version 2
8 | of the License, or (at your option) any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program; if not, write to the Free Software
17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 | package org.linphone.tutorials;
20 |
21 | import org.linphone.core.tutorials.TutorialNotifier;
22 |
23 | import android.os.Handler;
24 | import android.widget.TextView;
25 |
26 | /**
27 | * Write notifications to a TextView widget.
28 | * This is an helper class, not a test activity.
29 | *
30 | * @author Guillaume Beraudo
31 | *
32 | */
33 | class AndroidTutorialNotifier extends TutorialNotifier {
34 |
35 | private Handler mHandler;
36 | private TextView outputTextView;
37 |
38 | public AndroidTutorialNotifier(Handler mHandler, final TextView outputTextView) {
39 | this.mHandler = mHandler;
40 | this.outputTextView = outputTextView;
41 | }
42 |
43 |
44 | @Override
45 | public void notify(final String s) {
46 | mHandler.post(new Runnable() {
47 | public void run() {
48 | outputTextView.setText(s + "\n" + outputTextView.getText());
49 | }
50 | });
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/tutorials/TutorialLauncherActivity.java:
--------------------------------------------------------------------------------
1 | package org.linphone.tutorials;
2 | /*
3 | TutorialLauncherActivity.java
4 | Copyright (C) 2013 Belledonne Communications, Grenoble, France
5 |
6 | This program is free software; you can redistribute it and/or
7 | modify it under the terms of the GNU General Public License
8 | as published by the Free Software Foundation; either version 2
9 | of the License, or (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program; if not, write to the Free Software
18 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 | */
20 |
21 | import org.linphone.R;
22 |
23 | import android.app.Activity;
24 | import android.content.Intent;
25 | import android.os.Bundle;
26 | import android.view.View;
27 |
28 | /**
29 | * @author Sylvain Berfini
30 | */
31 | public class TutorialLauncherActivity extends Activity {
32 | @Override
33 | protected void onCreate(Bundle savedInstanceState) {
34 | super.onCreate(savedInstanceState);
35 | setContentView(R.layout.tutorials);
36 | }
37 |
38 | public void startHelloWorldTutorial(View v) {
39 | startActivity(new Intent().setClass(TutorialLauncherActivity.this, TutorialHelloWorldActivity.class));
40 | }
41 |
42 | public void startRegistrationTutorial(View v) {
43 | startActivity(new Intent().setClass(TutorialLauncherActivity.this, TutorialRegistrationActivity.class));
44 | }
45 |
46 | public void startChatRoomTutorial(View v) {
47 | startActivity(new Intent().setClass(TutorialLauncherActivity.this, TutorialChatRoomActivity.class));
48 | }
49 |
50 | public void startBuddyStatusTutorial(View v) {
51 | startActivity(new Intent().setClass(TutorialLauncherActivity.this, TutorialBuddyStatusActivity.class));
52 | }
53 |
54 | public void startCardDavSyncTutorial(View v) {
55 | startActivity(new Intent().setClass(TutorialLauncherActivity.this, TutorialCardDavSync.class));
56 | }
57 | }
58 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/ui/AddressAware.java:
--------------------------------------------------------------------------------
1 | /*
2 | AddressAwareWidget.java
3 | Copyright (C) 2011 Belledonne Communications, Grenoble, France
4 |
5 | This program is free software; you can redistribute it and/or
6 | modify it under the terms of the GNU General Public License
7 | as published by the Free Software Foundation; either version 2
8 | of the License, or (at your option) any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program; if not, write to the Free Software
17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 | package org.linphone.ui;
20 |
21 |
22 |
23 | /**
24 | * @author Guillaume Beraudo
25 | *
26 | */
27 | public interface AddressAware {
28 |
29 | void setAddressWidget(AddressText address);
30 |
31 | }
32 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/ui/LedPreference.java:
--------------------------------------------------------------------------------
1 | package org.linphone.ui;
2 |
3 | /*
4 | LedPreference.java
5 | Copyright (C) 2012 Belledonne Communications, Grenoble, France
6 |
7 | This program is free software; you can redistribute it and/or
8 | modify it under the terms of the GNU General Public License
9 | as published by the Free Software Foundation; either version 2
10 | of the License, or (at your option) any later version.
11 |
12 | This program is distributed in the hope that it will be useful,
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | GNU General Public License for more details.
16 |
17 | You should have received a copy of the GNU General Public License
18 | along with this program; if not, write to the Free Software
19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 | */
21 |
22 | import org.linphone.R;
23 |
24 | import android.content.Context;
25 | import android.preference.Preference;
26 | import android.view.View;
27 | import android.widget.ImageView;
28 |
29 | /**
30 | * @author Sylvain Berfini
31 | */
32 | public class LedPreference extends Preference
33 | {
34 | private int ledDrawable;
35 |
36 | public LedPreference(Context context) {
37 | super(context);
38 | ledDrawable = R.drawable.led_disconnected;
39 | this.setWidgetLayoutResource(R.layout.preference_led);
40 | }
41 |
42 | @Override
43 | protected void onBindView(final View view) {
44 | super.onBindView(view);
45 |
46 | final ImageView imageView = (ImageView) view.findViewById(R.id.led);
47 | if (imageView != null) {
48 | imageView.setImageResource(ledDrawable);
49 | }
50 | }
51 |
52 | public void setLed(int led) {
53 | ledDrawable = led;
54 | notifyChanged();
55 | }
56 | }
57 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/ui/LinphoneScrollView.java:
--------------------------------------------------------------------------------
1 | package org.linphone.ui;
2 | /*
3 | LinphoneScrollView.java
4 | Copyright (C) 2013 Belledonne Communications, Grenoble, France
5 |
6 | This program is free software; you can redistribute it and/or
7 | modify it under the terms of the GNU General Public License
8 | as published by the Free Software Foundation; either version 2
9 | of the License, or (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program; if not, write to the Free Software
18 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 | */
20 | import android.content.Context;
21 | import android.util.AttributeSet;
22 | import android.widget.ScrollView;
23 |
24 | /**
25 | * @author Sylvain Berfini
26 | */
27 | public class LinphoneScrollView extends ScrollView {
28 | private ScrollViewListener scrollViewListener = null;
29 |
30 | public LinphoneScrollView(Context context) {
31 | super(context);
32 | }
33 |
34 | public LinphoneScrollView(Context context, AttributeSet attrs, int defStyle) {
35 | super(context, attrs, defStyle);
36 | }
37 |
38 | public LinphoneScrollView(Context context, AttributeSet attrs) {
39 | super(context, attrs);
40 | }
41 |
42 | public void setScrollViewListener(ScrollViewListener scrollViewListener) {
43 | this.scrollViewListener = scrollViewListener;
44 | }
45 |
46 | @Override
47 | protected void onScrollChanged(int x, int y, int oldx, int oldy) {
48 | super.onScrollChanged(x, y, oldx, oldy);
49 | if (y >= getMeasuredHeight() && scrollViewListener != null) {
50 | //scrollViewListener.OnScrollToBottom();
51 | }
52 | else if (y == 0 && scrollViewListener != null) {
53 | scrollViewListener.OnScrollToTop(getMeasuredHeight());
54 | }
55 | }
56 | }
57 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/ui/ScrollViewListener.java:
--------------------------------------------------------------------------------
1 | package org.linphone.ui;
2 | /*
3 | ScrollViewListener.java
4 | Copyright (C) 2013 Belledonne Communications, Grenoble, France
5 |
6 | This program is free software; you can redistribute it and/or
7 | modify it under the terms of the GNU General Public License
8 | as published by the Free Software Foundation; either version 2
9 | of the License, or (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program; if not, write to the Free Software
18 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 | */
20 |
21 | /**
22 | * @author Sylvain Berfini
23 | */
24 | public interface ScrollViewListener {
25 | void OnScrollToTop(int previousHeight);
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/xmlrpc/XmlRpcListener.java:
--------------------------------------------------------------------------------
1 | package org.linphone.xmlrpc;
2 |
3 | public interface XmlRpcListener {
4 | public void onError(String error);
5 | public void onAccountCreated(String result);
6 | public void onAccountExpireFetched(String result);
7 | public void onAccountExpireUpdated(String result);
8 | public void onAccountActivated(String result);
9 | public void onAccountActivatedFetched(boolean isActivated);
10 | public void onTrialAccountFetched(boolean isTrial);
11 | public void onAccountFetched(boolean isExisting);
12 | public void onAccountEmailChanged(String result);
13 | public void onAccountPasswordChanged(String result);
14 | public void onRecoverPasswordLinkSent(String result);
15 | public void onActivateAccountLinkSent(String result);
16 | public void onSignatureVerified(boolean success);
17 | public void onUsernameSent(String result);
18 | public void onRemoteProvisioningFilenameSent(String result);
19 | }
20 |
--------------------------------------------------------------------------------
/app/src/main/java/org/linphone/xmlrpc/XmlRpcListenerBase.java:
--------------------------------------------------------------------------------
1 | package org.linphone.xmlrpc;
2 |
3 | public class XmlRpcListenerBase implements XmlRpcListener {
4 | @Override
5 | public void onError(String error) {
6 | // TODO Auto-generated method stub
7 |
8 | }
9 |
10 | @Override
11 | public void onAccountCreated(String result) {
12 | // TODO Auto-generated method stub
13 |
14 | }
15 |
16 | @Override
17 | public void onAccountExpireFetched(String result) {
18 | // TODO Auto-generated method stub
19 |
20 | }
21 |
22 | @Override
23 | public void onAccountActivated(String result) {
24 | // TODO Auto-generated method stub
25 |
26 | }
27 |
28 | @Override
29 | public void onAccountActivatedFetched(boolean isActivated) {
30 | // TODO Auto-generated method stub
31 |
32 | }
33 |
34 | @Override
35 | public void onTrialAccountFetched(boolean isTrial) {
36 | // TODO Auto-generated method stub
37 |
38 | }
39 |
40 | @Override
41 | public void onAccountFetched(boolean isExisting) {
42 | // TODO Auto-generated method stub
43 |
44 | }
45 |
46 | @Override
47 | public void onAccountEmailChanged(String result) {
48 | // TODO Auto-generated method stub
49 |
50 | }
51 |
52 | @Override
53 | public void onAccountPasswordChanged(String result) {
54 | // TODO Auto-generated method stub
55 |
56 | }
57 |
58 | @Override
59 | public void onRecoverPasswordLinkSent(String result) {
60 | // TODO Auto-generated method stub
61 |
62 | }
63 |
64 | @Override
65 | public void onActivateAccountLinkSent(String result) {
66 | // TODO Auto-generated method stub
67 |
68 | }
69 |
70 | @Override
71 | public void onAccountExpireUpdated(String result) {
72 | // TODO Auto-generated method stub
73 |
74 | }
75 |
76 | @Override
77 | public void onSignatureVerified(boolean success) {
78 | // TODO Auto-generated method stub
79 |
80 | }
81 |
82 | @Override
83 | public void onUsernameSent(String result) {
84 | // TODO Auto-generated method stub
85 |
86 | }
87 |
88 | @Override
89 | public void onRemoteProvisioningFilenameSent(String result) {
90 | // TODO Auto-generated method stub
91 |
92 | }
93 | }
94 |
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libbctoolbox-armeabi-v7a.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/libbctoolbox-armeabi-v7a.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libbctoolbox-tester-armeabi-v7a.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/libbctoolbox-tester-armeabi-v7a.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libffmpeg-linphone-armeabi-v7a.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/libffmpeg-linphone-armeabi-v7a.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libgnustl_shared.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/libgnustl_shared.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/liblinphone-armeabi-v7a.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/liblinphone-armeabi-v7a.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/liblinphonetester-armeabi-v7a.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/liblinphonetester-armeabi-v7a.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libmediastreamer_base-armeabi-v7a.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/libmediastreamer_base-armeabi-v7a.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libmediastreamer_voip-armeabi-v7a.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/libmediastreamer_voip-armeabi-v7a.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libmssilk.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/libmssilk.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libmswebrtc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/libmswebrtc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libortp-armeabi-v7a.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi-v7a/libortp-armeabi-v7a.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libbctoolbox-armeabi.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/libbctoolbox-armeabi.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libbctoolbox-tester-armeabi.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/libbctoolbox-tester-armeabi.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libgnustl_shared.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/libgnustl_shared.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/liblinphone-armeabi.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/liblinphone-armeabi.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/liblinphonetester-armeabi.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/liblinphonetester-armeabi.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libmediastreamer_base-armeabi.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/libmediastreamer_base-armeabi.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libmediastreamer_voip-armeabi.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/libmediastreamer_voip-armeabi.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libmssilk.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/libmssilk.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libmswebrtc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/libmswebrtc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libortp-armeabi.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/armeabi/libortp-armeabi.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libbctoolbox-tester-x86.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/libbctoolbox-tester-x86.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libbctoolbox-x86.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/libbctoolbox-x86.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libffmpeg-linphone-x86.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/libffmpeg-linphone-x86.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libgnustl_shared.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/libgnustl_shared.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/liblinphone-x86.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/liblinphone-x86.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/liblinphonetester-x86.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/liblinphonetester-x86.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libmediastreamer_base-x86.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/libmediastreamer_base-x86.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libmediastreamer_voip-x86.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/libmediastreamer_voip-x86.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libmssilk.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/libmssilk.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libmswebrtc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/libmswebrtc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libortp-x86.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/jniLibs/x86/libortp-x86.so
--------------------------------------------------------------------------------
/app/src/main/res/anim/bounce.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/slide_in_bottom_to_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/slide_in_left_to_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/slide_in_right_to_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/slide_in_top_to_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/slide_out_bottom_to_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/slide_out_left_to_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/slide_out_right_to_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/slide_out_top_to_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/add_field_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/add_field_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/add_field_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/add_field_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/arrow_accept.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/arrow_accept.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/arrow_hangup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/arrow_hangup.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/avatar.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/avatar_chat_mask.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/avatar_chat_mask.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/avatar_chat_mask_outgoing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/avatar_chat_mask_outgoing.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/avatar_mask.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/avatar_mask.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/avatar_mask_border.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/avatar_mask_border.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/backspace_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/backspace_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/backspace_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/backspace_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/backspace_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/backspace_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_add.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_alt_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_alt_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_alt_start.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_alt_start.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_audio_start.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_audio_start.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_hangup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_hangup.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_incoming.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_incoming.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_missed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_missed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_outgoing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_outgoing.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_quality_indicator_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_quality_indicator_0.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_quality_indicator_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_quality_indicator_1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_quality_indicator_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_quality_indicator_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_quality_indicator_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_quality_indicator_3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_quality_indicator_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_quality_indicator_4.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_start_body_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_start_body_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_start_body_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_start_body_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_start_body_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_start_body_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_status_incoming.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_status_incoming.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_status_missed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_status_missed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_status_outgoing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_status_outgoing.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_transfer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_transfer.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/call_video_start.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/call_video_start.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/camera_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/camera_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/camera_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/camera_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/camera_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/camera_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/camera_switch_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/camera_switch_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/camera_switch_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/camera_switch_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/camera_switch_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/camera_switch_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/cancel_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/cancel_edit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_add.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_attachment_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_attachment_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_attachment_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_attachment_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_file_message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_file_message.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_list_indicator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_list_indicator.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_message_delivered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_message_delivered.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_message_inprogress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_message_inprogress.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_message_not_delivered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_message_not_delivered.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_picture_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_picture_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_send_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_send_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_send_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_send_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_start_body_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_start_body_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_start_body_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_start_body_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_start_body_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/chat_start_body_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/checkbox_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/checkbox_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/checkbox_unchecked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/checkbox_unchecked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/clean_field_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/clean_field_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/clean_field_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/clean_field_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/conference_exit_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/conference_exit_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/conference_exit_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/conference_exit_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/conference_start.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/conference_start.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/contact.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/contact.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/contact_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/contact_add.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/contact_add_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/contact_add_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/contacts_all_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/contacts_all_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/contacts_all_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/contacts_all_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/contacts_sip_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/contacts_sip_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/contacts_sip_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/contacts_sip_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/delete_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/delete_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/delete_field_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/delete_field_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/delete_field_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/delete_field_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/deselect_all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/deselect_all.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dialer_alt_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/dialer_alt_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dialer_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/dialer_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dialer_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/dialer_background.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/edit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/edit_list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/edit_list.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/edit_list_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/edit_list_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/fast_scroll_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/fast_scroll_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/fast_scroll_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/fast_scroll_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/footer_chat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/footer_chat.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/footer_contacts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/footer_contacts.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/footer_dialer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/footer_dialer.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/footer_history.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/footer_history.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/history_all_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/history_all_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/history_all_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/history_all_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/history_chat_indicator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/history_chat_indicator.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/history_missed_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/history_missed_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/history_missed_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/history_missed_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/info.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/led_connected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/led_connected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/led_disconnected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/led_disconnected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/led_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/led_error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/led_inprogress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/led_inprogress.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/linphone_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/linphone_logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/linphone_logo_orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/linphone_logo_orange.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/linphone_notification_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/linphone_notification_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/linphone_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/linphone_user.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/list_details_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/list_details_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/list_details_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/list_details_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/menu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/menu_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/menu_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/micro_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/micro_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/micro_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/micro_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/micro_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/micro_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_0.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_0_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_0_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_1_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_1_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_2_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_2_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_3_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_3_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_4.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_4_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_4_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_5.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_5_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_5_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_6.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_6_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_6_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_7.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_7_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_7_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_8.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_8_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_8_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_9_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_9_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_hash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_hash.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_hash_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_hash_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_star.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/numpad_star_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/numpad_star_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/options_add_call.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/options_add_call.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/options_add_call_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/options_add_call_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/options_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/options_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/options_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/options_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/options_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/options_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/options_start_conference.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/options_start_conference.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/options_start_conference_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/options_start_conference_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/options_transfer_call.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/options_transfer_call.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/options_transfer_call_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/options_transfer_call_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/pause_big_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/pause_big_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/pause_big_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/pause_big_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/pause_big_over_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/pause_big_over_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/pause_small_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/pause_small_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/pause_small_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/pause_small_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/pause_small_over_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/pause_small_over_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/quit_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/quit_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/quit_over.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/quit_over.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resizable_assistant_button.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/resizable_assistant_button.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resizable_assistant_button_disabled.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/resizable_assistant_button_disabled.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resizable_assistant_button_over.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/resizable_assistant_button_over.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resizable_cancel_button.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/resizable_cancel_button.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resizable_chat_bubble_incoming.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/resizable_chat_bubble_incoming.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resizable_chat_bubble_outgoing.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/resizable_chat_bubble_outgoing.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resizable_confirm_delete_button.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/resizable_confirm_delete_button.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resizable_textfield.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/resizable_textfield.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resizable_textfield_error.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/resizable_textfield_error.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/route_bluetooth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/route_bluetooth.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/route_bluetooth_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/route_bluetooth_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/route_earpiece.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/route_earpiece.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/route_earpiece_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/route_earpiece_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/route_speaker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/route_speaker.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/route_speaker_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/route_speaker_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/routes_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/routes_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/routes_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/routes_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/security_ko.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/security_ko.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/security_ok.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/security_ok.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/security_pending.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/security_pending.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/select_all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/select_all.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/speaker_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/speaker_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/speaker_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/speaker_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/speaker_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/speaker_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/splashscreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/splashscreen.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_available.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_available.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_available_desktop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_available_desktop.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_available_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_available_phone.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_away.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_away.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_away_desktop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_away_desktop.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_away_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_away_phone.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_busy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_busy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_busy_desktop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_busy_desktop.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_busy_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_busy_phone.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_disconnected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_disconnected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_disconnected_desktop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_disconnected_desktop.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/status_disconnected_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/status_disconnected_phone.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/topbar_avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/topbar_avatar.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/topbar_call_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/topbar_call_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/topbar_chat_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/topbar_chat_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/topbar_videocall_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/topbar_videocall_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/valid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/valid.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/valid_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/valid_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/voicemail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/voicemail.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/waiting_time.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/drawable-xhdpi/waiting_time.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/assistant_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/assistant_button_text_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/backspace.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/call.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/camera_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/chat.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/chat_send_file.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/chat_send_message.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/checkbox.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/contact_add_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/contacts_all.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/contacts_sip.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/delete_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dialer.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/edit_list_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/fast_scroll.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/fast_scroll_preview.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/footer_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/hangup.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/history_all.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/history_missed.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/list_delete.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/list_detail.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/list_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/menu_burger.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/micro.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_eight.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_five.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_four.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_nine.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_one.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_seven.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_sharp.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_six.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_star_digit.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_three.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_two.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/numpad_zero.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/options_add_call_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/options_start_conference_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/options_transfer_call_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/pause.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/quit.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/speaker.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/status_level.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/switch_camera.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/toolbar_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-land/launch_screen.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
13 |
14 |
19 |
20 |
27 |
28 |
35 |
36 |
37 |
38 |
43 |
44 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-land/search_contact_cell.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
18 |
19 |
26 |
27 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-land/video.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-land/video_no_opengl.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-sw533dp-land/video.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-sw533dp-land/video_no_opengl.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-sw720dp-land/video.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-sw720dp-land/video_no_opengl.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/assistant.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
15 |
16 |
17 |
18 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/assistant_account_creation_email_activation.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
12 |
13 |
20 |
21 |
29 |
30 |
38 |
39 |
47 |
48 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/assistant_country_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
21 |
22 |
23 |
24 |
28 |
29 |
38 |
39 |
48 |
49 |
50 |
51 |
58 |
59 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/assistant_ec_calibration.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
16 |
17 |
22 |
23 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/assistant_topbar.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
19 |
20 |
27 |
28 |
37 |
38 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/audio.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/call_inactive_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
17 |
18 |
28 |
29 |
37 |
38 |
45 |
46 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/conf_call_control_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
18 |
19 |
20 |
25 |
26 |
35 |
36 |
37 |
45 |
46 |
47 |
48 |
49 |
58 |
59 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/conference_header.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
20 |
21 |
27 |
28 |
29 |
30 |
31 |
42 |
43 |
48 |
49 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/conference_paused_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
17 |
18 |
29 |
30 |
37 |
38 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/contact_edit_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
19 |
20 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/country_cell.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
15 |
16 |
22 |
23 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
22 |
23 |
32 |
33 |
42 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/edit_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
19 |
20 |
24 |
25 |
34 |
35 |
45 |
46 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/empty_fragment.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/hello_world.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
7 |
10 |
12 |
13 |
14 |
17 |
20 |
21 |
22 |
23 |
24 |
27 |
28 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/hidden.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/in_app_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/in_app_purchase_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
17 |
18 |
25 |
26 |
32 |
33 |
38 |
39 |
40 |
41 |
48 |
49 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/input_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
27 |
28 |
34 |
35 |
44 |
45 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/launch_screen.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
18 |
19 |
26 |
27 |
34 |
35 |
36 |
37 |
42 |
43 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/new_password.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
16 |
17 |
28 |
29 |
37 |
38 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preference_led.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preference_list_content.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/progress_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/remote_provisioning.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
23 |
24 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/search_contact_cell.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
18 |
19 |
26 |
27 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/side_menu_account_cell.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
16 |
17 |
25 |
26 |
30 |
31 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/side_menu_item_cell.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/side_menu_main_account.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
17 |
18 |
25 |
26 |
31 |
32 |
37 |
38 |
39 |
40 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/toast.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/tuto_carddav.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
19 |
20 |
25 |
26 |
32 |
33 |
34 |
35 |
41 |
42 |
47 |
48 |
53 |
54 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/tutorials.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
14 |
15 |
20 |
21 |
26 |
27 |
32 |
33 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/video.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/video_no_opengl.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/zrtp_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
15 |
16 |
20 |
21 |
30 |
31 |
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/raw-sw600dp/linphonerc_default:
--------------------------------------------------------------------------------
1 | [net]
2 | download_bw=512
3 | upload_bw=512
4 |
5 | [sip]
6 | contact="Linphone Android"
7 | use_info=0
8 | use_ipv6=0
9 | keepalive_period=30000
10 |
11 | [video]
12 | size=vga
13 |
14 | [app]
15 | tunnel=disabled
16 | push_notification=1
17 | debug=0
18 |
19 | [tunnel]
20 | host=
21 | port=443
22 |
23 | [misc]
24 | log_collection_upload_server_url=https://www.linphone.org:444/lft.php
25 | file_transfer_server_url=https://www.linphone.org:444/lft.php
--------------------------------------------------------------------------------
/app/src/main/res/raw/hold.mkv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/raw/hold.mkv
--------------------------------------------------------------------------------
/app/src/main/res/raw/incoming_chat.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/raw/incoming_chat.wav
--------------------------------------------------------------------------------
/app/src/main/res/raw/linphonerc_default:
--------------------------------------------------------------------------------
1 | [net]
2 | download_bw=380
3 | upload_bw=380
4 |
5 | [sip]
6 | contact="Linphone Android"
7 | use_info=0
8 | use_ipv6=1
9 | keepalive_period=30000
10 | sip_port=-1
11 | sip_tcp_port=-1
12 | sip_tls_port=-1
13 |
14 | [video]
15 | size=qvga
16 |
17 | [app]
18 | tunnel=disabled
19 | push_notification=1
20 | auto_start=1
21 |
22 | [tunnel]
23 | host=
24 | port=443
25 |
26 | [misc]
27 | log_collection_upload_server_url=https://www.linphone.org:444/lft.php
28 | file_transfer_server_url=https://www.linphone.org:444/lft.php
29 |
--------------------------------------------------------------------------------
/app/src/main/res/raw/linphonerc_factory:
--------------------------------------------------------------------------------
1 |
2 | #
3 | #This file shall not contain path referencing package name, in order to be portable when app is renamed.
4 | #Paths to resources must be set from LinphoneManager, after creating LinphoneCore.
5 | [net]
6 | mtu=1300
7 |
8 | [sip]
9 | guess_hostname=1
10 | inc_timeout=15
11 | register_only_when_network_is_up=1
12 | auto_net_state_mon=0
13 | auto_answer_replacing_calls=1
14 | ping_with_options=0
15 | rls_uri=sip:rls@sip.linphone.org
16 | use_rls_presence=1
17 |
18 | [rtp]
19 | audio_rtp_port=7076
20 | video_rtp_port=9078
21 | audio_jitt_comp=60
22 | video_jitt_comp=60
23 | nortp_timeout=30
24 | disable_upnp=1
25 |
26 | [sound]
27 | playback_dev_id=
28 | ringer_dev_id=
29 | capture_dev_id=
30 | dtmf_player_amp=0.1
31 |
32 | #remove this property for any application that is not Linphone public version itself
33 | ec_calibrator_cool_tones=1
34 |
35 | [misc]
36 | max_calls=10
37 | history_max_size=100
38 |
39 | [app]
40 | activation_code_length=4
41 |
42 | [in-app-purchase]
43 | server_url=https://sip3.linphone.org:444/inapp.php
44 | purchasable_items_ids=test_account_subscription
45 |
46 | [assistant]
47 | domain=sip.linphone.org
48 | password_max_length=-1
49 | password_min_length=1
50 | username_length=-1
51 | username_max_length=64
52 | username_min_length=1
53 | username_regex=^[a-z0-9_.\-]*$
54 | xmlrpc_url=https://sip3.linphone.org:444/wizard.php
55 |
--------------------------------------------------------------------------------
/app/src/main/res/raw/lpconfig.xsd:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/app/src/main/res/raw/notes_of_the_optimistic.mkv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/raw/notes_of_the_optimistic.mkv
--------------------------------------------------------------------------------
/app/src/main/res/raw/oldphone_mono.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/raw/oldphone_mono.wav
--------------------------------------------------------------------------------
/app/src/main/res/raw/ringback.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/app/src/main/res/raw/ringback.wav
--------------------------------------------------------------------------------
/app/src/main/res/values-sw533dp/non_localizable_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | true
4 |
--------------------------------------------------------------------------------
/app/src/main/res/values/attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/values/color.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #ff5e00
4 | #000000
5 | #444444
6 | #808080
7 | #c4c4c4
8 | #e1e1e1
9 | #f3f3f3
10 | #ffffff
11 | #ff0000
12 | #ffa645
13 | #3eb5c0
14 | #96c11f
15 |
16 | #00000000
17 |
18 |
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values/digit_style.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/values/slidingtab_style.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
13 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/authenticator.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/contacts.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
7 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/syncadapter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/app/src/test/java/org/linphone/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package org.linphone;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() throws Exception {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | org.gradle.jvmargs=-Xmx1536m
13 |
14 | # When configured, Gradle will run in incubating parallel mode.
15 | # This option should only be used with decoupled projects. More details, visit
16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17 | # org.gradle.parallel=true
18 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/treasure-lau/Linphone4Android/429d04076e45fd19809970db996174e55abbd119/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Apr 21 18:28:20 SGT 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------