Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2dee27fa authored by Romain Hunault's avatar Romain Hunault 💻
Browse files

Merge branch 'pie-about-bug-fix' into 'v1-pie-sprint_istanbul'

Fixed Tabulations on Contact about entries

See merge request !17
parents 5bf54de9 7b780165
Loading
Loading
Loading
Loading
+16 −11
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2016 The Android Open Source Project
<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2016 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
@@ -17,6 +16,7 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <Preference
        android:icon="@null"
        android:key="contacts_info"
        android:summary="@string/preferences_app_info"
        android:title="@string/preferences_app_info_title" />
@@ -33,6 +33,7 @@
    </Preference>

    <Preference
        android:icon="@null"
        android:key="about_app"
        android:title="@string/preferences_about_app">

@@ -42,19 +43,25 @@

    </Preference>

    <Preference android:title="@string/preferences_licence">
    <Preference
        android:icon="@null"
        android:title="@string/preferences_licence">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://gitlab.e.foundation/e/os/android_packages_apps_Contacts/-/blob/v1-oreo/NOTICE" />
    </Preference>

    <Preference android:title="@string/preferences_authors">
    <Preference
        android:icon="@null"
        android:title="@string/preferences_authors">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://gitlab.e.foundation/e/os/android_packages_apps_Contacts" />
    </Preference>

    <Preference android:title="@string/preferences_source_code">
    <Preference
        android:icon="@null"
        android:title="@string/preferences_source_code">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://gitlab.e.foundation/e/os/android_packages_apps_Contacts" />
@@ -63,18 +70,16 @@
    <Preference
        android:icon="@null"
        android:key="@string/pref_open_source_licenses_key"
        android:title="@string/about_open_source_licenses"
        android:summary="@string/about_open_source_licenses_summary"/>
        android:summary="@string/about_open_source_licenses_summary"
        android:title="@string/about_open_source_licenses" />

    <Preference
        android:icon="@null"
        android:key="@string/pref_privacy_policy_key"
        android:title="@string/about_privacy_policy">
    </Preference>
        android:title="@string/about_privacy_policy" />

    <Preference
        android:icon="@null"
        android:key="@string/pref_terms_of_service_key"
        android:title="@string/about_terms_of_service">
    </Preference>
        android:title="@string/about_terms_of_service" />
</PreferenceScreen>