• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2019 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
17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18                  xmlns:settings="http://schemas.android.com/apk/res-auto"
19                  android:title="@string/legal_information"
20                  android:key="legal_screen">
21
22    <!-- Note: The titles given here probably won't be used.  Instead, we programmatically
23       fill the title with the label of the activity with the corresponding action.
24       If there is not an activity for an action, the item will be removed from the
25       list. -->
26
27    <!-- Copyright information -->
28    <Preference
29        android:key="copyright"
30        android:title="@string/copyright_title"
31        settings:controller="com.android.car.developeroptions.deviceinfo.legal.CopyrightPreferenceController" />
32
33    <!-- License information -->
34    <Preference
35        android:key="license"
36        android:title="@string/license_title"
37        settings:controller="com.android.car.developeroptions.deviceinfo.legal.LicensePreferenceController" />
38
39    <!-- Terms and conditions -->
40    <Preference
41        android:key="terms"
42        android:title="@string/terms_title"
43        settings:controller="com.android.car.developeroptions.deviceinfo.legal.TermsPreferenceController" />
44
45    <!-- System WebView License information -->
46    <Preference
47        android:key="webview_license"
48        android:title="@string/webview_license_title"
49        settings:controller="com.android.car.developeroptions.deviceinfo.legal.WebViewLicensePreferenceController" />
50
51    <Preference
52        android:key="wallpaper_attributions"
53        android:title="@string/wallpaper_attributions"
54        android:summary="@string/wallpaper_attributions_values"
55        settings:controller="com.android.car.developeroptions.deviceinfo.legal.WallpaperAttributionsPreferenceController" />
56
57</PreferenceScreen>
58
59