VancedMicroG/play-services-core/src/main/res/xml/preferences_start.xml

54 lines
2.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (C) 2013-2017 microG Project Team
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
2017-02-22 03:20:46 +00:00
<PreferenceCategory android:title="@string/prefcat_google_services">
<org.microg.tools.ui.TintIconPreference
2020-07-27 14:20:04 +00:00
android:icon="@drawable/ic_add_account"
android:summary="@string/pref_add_account_summary"
android:title="@string/pref_add_account_title">
<intent
android:targetClass="org.microg.gms.auth.login.LoginActivity"
2020-07-16 00:24:57 +00:00
android:targetPackage="com.mgoogle.android.gms"/>
</org.microg.tools.ui.TintIconPreference>
2017-02-22 03:20:46 +00:00
<org.microg.tools.ui.TintIconPreference
2020-07-27 14:20:04 +00:00
android:icon="@drawable/ic_device_login"
2017-02-22 03:20:46 +00:00
android:key="pref_checkin"
android:title="@string/service_name_checkin">
<intent
android:targetClass="org.microg.gms.ui.CheckinFragment$AsActivity"
2020-07-16 00:24:57 +00:00
android:targetPackage="com.mgoogle.android.gms"/>
2017-02-22 03:20:46 +00:00
</org.microg.tools.ui.TintIconPreference>
<org.microg.tools.ui.TintIconPreference
2020-07-27 14:20:04 +00:00
android:icon="@drawable/ic_cloud_bell"
android:key="pref_gcm"
android:title="@string/service_name_mcs">
<intent
android:targetClass="org.microg.gms.ui.GcmFragment$AsActivity"
2020-07-16 00:24:57 +00:00
android:targetPackage="com.mgoogle.android.gms"/>
2017-02-08 13:13:34 +00:00
</org.microg.tools.ui.TintIconPreference>
</PreferenceCategory>
<PreferenceCategory android:title="@string/prefcat_about">
<org.microg.tools.ui.TintIconPreference
android:key="pref_about"
android:title="@string/pref_about_title">
<intent
android:targetClass="org.microg.gms.ui.AboutFragment$AsActivity"
2020-07-16 00:24:57 +00:00
android:targetPackage="com.mgoogle.android.gms"/>
</org.microg.tools.ui.TintIconPreference>
</PreferenceCategory>
</PreferenceScreen>