76 lines
3.4 KiB
XML
76 lines
3.4 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<!-- Copyright (C) 2022 The Android Open Source Project
|
||
|
|
|
||
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
|
you may not use this file except in compliance with the License.
|
||
|
|
You may obtain a copy of the License at
|
||
|
|
|
||
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
|
||
|
|
Unless required by applicable law or agreed to in writing, software
|
||
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
|
See the License for the specific language governing permissions and
|
||
|
|
limitations under the License.
|
||
|
|
-->
|
||
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:key="config_preference_editor"
|
||
|
|
android:title="Preference Editor">
|
||
|
|
<ListPreference android:title="Level"
|
||
|
|
android:entryValues="@array/log_level_item_values"
|
||
|
|
android:entries="@array/log_level_items"
|
||
|
|
android:key="list_log_level"
|
||
|
|
android:defaultValue=""
|
||
|
|
android:enabled="true"
|
||
|
|
android:selectable="true">
|
||
|
|
</ListPreference>
|
||
|
|
<PreferenceScreen android:title="Debug Log Mode"
|
||
|
|
android:key="screen_debug_log_mode">
|
||
|
|
<CheckBoxPreference
|
||
|
|
android:key="log_mode_socket"
|
||
|
|
android:title="@string/log_mode_socket"
|
||
|
|
android:defaultValue="false"
|
||
|
|
android:summary="@string/log_mode_socket_summary" />
|
||
|
|
<CheckBoxPreference
|
||
|
|
android:key="log_mode_audio"
|
||
|
|
android:title="@string/log_mode_audio"
|
||
|
|
android:defaultValue="false"
|
||
|
|
android:summary="@string/log_mode_audio_summary" />
|
||
|
|
<CheckBoxPreference
|
||
|
|
android:key="log_mode_video"
|
||
|
|
android:title="@string/log_mode_video"
|
||
|
|
android:defaultValue="false"
|
||
|
|
android:summary="@string/log_mode_video_summary" />
|
||
|
|
<CheckBoxPreference
|
||
|
|
android:key="log_mode_text"
|
||
|
|
android:title="@string/log_mode_text"
|
||
|
|
android:defaultValue="false"
|
||
|
|
android:summary="@string/log_mode_text_summary" />
|
||
|
|
<CheckBoxPreference
|
||
|
|
android:key="log_mode_rtp"
|
||
|
|
android:title="@string/log_mode_rtp"
|
||
|
|
android:defaultValue="false"
|
||
|
|
android:summary="@string/log_mode_rtp_summary" />
|
||
|
|
<CheckBoxPreference
|
||
|
|
android:key="log_mode_payload"
|
||
|
|
android:title="@string/log_mode_payload"
|
||
|
|
android:defaultValue="false"
|
||
|
|
android:summary="@string/log_mode_payload_summary" />
|
||
|
|
<CheckBoxPreference
|
||
|
|
android:key="log_mode_jitterbuffer"
|
||
|
|
android:title="@string/log_mode_jitterbuffer"
|
||
|
|
android:defaultValue="false"
|
||
|
|
android:summary="@string/log_mode_jitterbuffer_summary" />
|
||
|
|
<CheckBoxPreference
|
||
|
|
android:key="log_mode_rtcp"
|
||
|
|
android:title="@string/log_mode_rtcp"
|
||
|
|
android:defaultValue="false"
|
||
|
|
android:summary="@string/log_mode_rtcp_summary" />
|
||
|
|
<CheckBoxPreference
|
||
|
|
android:key="log_mode_rtpstack"
|
||
|
|
android:title="@string/log_mode_rtpstack"
|
||
|
|
android:defaultValue="false"
|
||
|
|
android:summary="@string/log_mode_rtpstack_summary" />
|
||
|
|
</PreferenceScreen>
|
||
|
|
</PreferenceScreen>
|