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

Commit 6984fbee authored by Romain Hunault's avatar Romain Hunault
Browse files

Create submenu for microG

parent fe43b11b
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -3319,5 +3319,20 @@
        </activity>

        <!-- This is the longest AndroidManifest.xml ever. -->

        <activity android:name="Settings$MicroGActivity"
            android:label="@string/micro_g">
            <intent-filter android:priority="1">
                <action android:name="android.settings.MICROG_SETTINGS" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter android:priority="6">
                <action android:name="com.android.settings.action.SETTINGS" />
            </intent-filter>
            <meta-data android:name="com.android.settings.category"
                android:value="com.android.settings.category.system" />
            <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
                android:value="com.android.settings.MicroGSettings" />
        </activity>
    </application>
</manifest>
+2 −0
Original line number Diff line number Diff line
@@ -3722,4 +3722,6 @@
    <string name="new_device_suggestion_summary" product="device" msgid="2939870049868336652">"Découvrez votre nouvel appareil"</string>
    <string name="disabled_low_ram_device" msgid="3751578499721173344">"Cette fonctionnalité n\'est pas disponible sur cet appareil"</string>
    <string name="microg_title">"Paramètres microG"</string>
    <string name="micro_g">"MicroG"</string>
    <string name="micro_g_title">"Accéder aux paramètres microG"</string>
</resources>
+3 −0
Original line number Diff line number Diff line
@@ -9046,6 +9046,9 @@
    <!-- Summary label for new device suggestion, which is displayed in Settings homepage [CHAR LIMIT=100] -->
    <string name="new_device_suggestion_summary" product="tablet">Take a tour of your new tablet</string>
    <string name="micro_g">MicroG</string>
    <string name="micro_g_title">Access to MicroG settings</string>
    <!-- Summary label for new device suggestion, which is displayed in Settings homepage [CHAR LIMIT=100] -->
    <string name="new_device_suggestion_summary" product="device">Take a tour of your new device</string>
+0 −6
Original line number Diff line number Diff line
@@ -19,12 +19,6 @@
        android:key="development_prefs_screen"
        android:title="@string/development_settings_title">

    <Preference android:title="@string/microg_title" >
        <intent android:action="android.intent.action.MAIN"
            android:targetPackage="com.google.android.gms"
            android:targetClass="org.microg.gms.ui.SettingsActivity" />
    </Preference>

    <PreferenceScreen
            android:key="development_tools"
            android:title="@string/development_tools_title"
+27 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 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.
     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"
        xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
        android:title="@string/micro_g">

    <Preference android:title="@string/micro_g_title" >
        <intent android:action="android.intent.action.MAIN"
            android:targetPackage="com.google.android.gms"
            android:targetClass="org.microg.gms.ui.SettingsActivity" />
    </Preference>

</PreferenceScreen>
Loading