1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2022 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
17    android:key="config_preference_editor"
18    android:title="Preference Editor">
19    <ListPreference android:title="Level"
20        android:entryValues="@array/log_level_item_values"
21        android:entries="@array/log_level_items"
22        android:key="list_log_level"
23        android:defaultValue=""
24        android:enabled="true"
25        android:selectable="true">
26    </ListPreference>
27    <PreferenceScreen android:title="Debug Log Mode"
28        android:key="screen_debug_log_mode">
29         <CheckBoxPreference
30                android:key="log_mode_socket"
31                android:title="@string/log_mode_socket"
32                android:defaultValue="false"
33                android:summary="@string/log_mode_socket_summary" />
34        <CheckBoxPreference
35                android:key="log_mode_audio"
36                android:title="@string/log_mode_audio"
37                android:defaultValue="false"
38                android:summary="@string/log_mode_audio_summary" />
39        <CheckBoxPreference
40                android:key="log_mode_video"
41                android:title="@string/log_mode_video"
42                android:defaultValue="false"
43                android:summary="@string/log_mode_video_summary" />
44        <CheckBoxPreference
45                android:key="log_mode_text"
46                android:title="@string/log_mode_text"
47                android:defaultValue="false"
48                android:summary="@string/log_mode_text_summary" />
49        <CheckBoxPreference
50                android:key="log_mode_rtp"
51                android:title="@string/log_mode_rtp"
52                android:defaultValue="false"
53                android:summary="@string/log_mode_rtp_summary" />
54        <CheckBoxPreference
55                android:key="log_mode_payload"
56                android:title="@string/log_mode_payload"
57                android:defaultValue="false"
58                android:summary="@string/log_mode_payload_summary" />
59        <CheckBoxPreference
60                android:key="log_mode_jitterbuffer"
61                android:title="@string/log_mode_jitterbuffer"
62                android:defaultValue="false"
63                android:summary="@string/log_mode_jitterbuffer_summary" />
64        <CheckBoxPreference
65                android:key="log_mode_rtcp"
66                android:title="@string/log_mode_rtcp"
67                android:defaultValue="false"
68                android:summary="@string/log_mode_rtcp_summary" />
69        <CheckBoxPreference
70                android:key="log_mode_rtpstack"
71                android:title="@string/log_mode_rtpstack"
72                android:defaultValue="false"
73                android:summary="@string/log_mode_rtpstack_summary" />
74        <CheckBoxPreference
75                android:key="log_mode_video_jitter"
76                android:title="@string/log_mode_video_jitter"
77                android:defaultValue="false"
78                android:summary="@string/log_mode_video_jitter_summary" />
79    </PreferenceScreen>
80</PreferenceScreen>
81