1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright (C) 2015 The Android Open Source Project
4
5  Licensed under the Apache License, Version 2.0 (the "License");
6  you may not use this file except in compliance with the License.
7  You may obtain a copy of the License at
8
9       http://www.apache.org/licenses/LICENSE-2.0
10
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License
16  -->
17
18<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
19    android:title="@string/legal_information">
20
21    <!-- Note: The titles given here probably won't be used.  Instead, we programmatically
22       fill the title with the label of the activity with the corresponding action.
23       If there is not an activity for an action, the item will be removed from the
24       list. -->
25
26    <!-- Copyright information -->
27    <PreferenceScreen
28        android:key="copyright"
29        android:title="@string/copyright_title">
30        <intent android:action="android.settings.COPYRIGHT" />
31    </PreferenceScreen>
32
33    <!-- License information -->
34    <PreferenceScreen
35        android:key="license"
36        android:title="@string/license_title">
37        <intent android:action="android.settings.LICENSE" />
38    </PreferenceScreen>
39
40    <!-- Terms and conditions -->
41    <PreferenceScreen
42        android:key="terms"
43        android:title="@string/terms_title">
44        <intent android:action="android.settings.TERMS" />
45    </PreferenceScreen>
46
47    <!-- System WebView License information -->
48    <PreferenceScreen
49        android:key="webview_license"
50        android:title="@string/webview_license_title">
51        <intent android:action="android.settings.WEBVIEW_LICENSE" />
52    </PreferenceScreen>
53
54    <!-- TODO: remove this once Google Settings is implemented for TV -->
55    <Preference
56        android:key="ads"
57        android:title="@string/about_ads">
58        <intent android:action="com.google.android.gms.settings.ADS_PRIVACY" />
59    </Preference>
60
61</PreferenceScreen>
62