blob: d0166f45c944ec9b10508899e280d367efd0aa50 [file] [log] [blame]
Jackeagle3f6b7df2017-03-13 21:52:52 -04001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 BlissRoms 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 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
18 android:title="@string/about_bliss_title" >
starkdroid113e0c42017-01-18 20:23:38 +053019 <PreferenceScreen android:layout="@layout/bliss_logo_row" android:key="bliss_logo" />
20
21 <!-- BlissRoms OTA -->
22 <PreferenceScreen
23 android:key="bliss_ota"
24 android:title="@string/bliss_ota">
25 <intent
26 android:action="android.intent.action.MAIN"
27 android:targetPackage="blissroms.updates"
28 android:targetClass="blissroms.updates.activities.MainActivity" />
29 </PreferenceScreen>
30
31 <!-- Bliss version -->
32 <Preference android:key="bliss_version"
33 style="?android:preferenceInformationStyle"
34 android:title="@string/bliss_version"
35 android:summary="@string/bliss_version_default" />
36
37 <!-- Bliss build date -->
38 <Preference android:key="build_date"
39 style="?android:preferenceInformationStyle"
40 android:title="@string/build_date"
41 android:summary="@string/build_date_default" />
42
43 <!-- Changelog -->
44 <PreferenceScreen
45 android:key="changelog"
46 android:title="@string/changelog_bliss_title"
47 android:fragment="com.blissroms.about.Changelog"
48 android:summary="@string/changelog_summary" />
49
50 <!-- Bliss Share -->
51 <PreferenceScreen
52 android:key="share"
53 android:title="@string/share_bliss_title"
54 android:summary="@string/share_bliss_summary" />
55
56 <!-- Bliss Github -->
57 <PreferenceScreen
58 android:key="bliss_source"
59 android:title="@string/bliss_source_title"
60 android:summary="@string/bliss_source_summary" />
61
62 <!-- Bliss Telegram -->
63 <PreferenceScreen
64 android:key="bliss_telegram"
65 android:title="@string/bliss_telegram_title"
66 android:summary="@string/bliss_telegram_summary" />
67
68 <!-- Bliss GooglePlus -->
69 <PreferenceScreen
70 android:key="bliss_google_plus"
71 android:title="@string/bliss_google_plus_title"
72 android:summary="@string/bliss_google_plus_summary" />
Jackeagle3f6b7df2017-03-13 21:52:52 -040073
74</PreferenceScreen>