• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
2    xmlns:android="http://schemas.android.com/apk/res/android">
3
4  <Preference
5    app:key="diagnostics"
6    app:icon="@drawable/ic_component_diagnostics"
7    app:title="@string/component_health_title"
8    app:summary="@string/component_health_summary">
9    <intent
10      android:targetClass="com.android.devicediagnostics.DiagnosticsActivity"
11      android:targetPackage="@string/package_name" />
12  </Preference>
13
14  <Preference
15      app:key="evaluation_mode"
16      app:icon="@drawable/ic_manual_diagnostics"
17      app:title="@string/evaluation_mode_title"
18      app:summary="@string/evaluation_mode_summary">
19    <intent
20        android:targetClass="com.android.devicediagnostics.EvaluationModeActivity"
21        android:targetPackage="@string/package_name" />
22  </Preference>
23</PreferenceScreen>
24