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

Unverified Commit b3107229 authored by HZ is not Chatty's avatar HZ is not Chatty Committed by GitHub
Browse files

Specify targetPackage for intents from Authenticator Preferences (#1849)

parent 9936ba43
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -18,16 +18,22 @@
    <PreferenceScreen
        android:key="k2"
        android:title="@string/prefs_account_security">
        <intent android:action="com.google.android.gms.accountsettings.SECURITY_SETTINGS"/>
        <intent
            android:action="com.google.android.gms.accountsettings.SECURITY_SETTINGS"
            android:targetPackage="com.google.android.gms" />
    </PreferenceScreen>
    <PreferenceScreen
        android:key="k3"
        android:title="@string/prefs_account_privacy">
        <intent android:action="com.google.android.gms.accountsettings.PRIVACY_SETTINGS"/>
        <intent
            android:action="com.google.android.gms.accountsettings.PRIVACY_SETTINGS"
            android:targetPackage="com.google.android.gms" />
    </PreferenceScreen>
    <PreferenceScreen
        android:key="k4"
        android:title="@string/prefs_account">
        <intent android:action="com.google.android.gms.accountsettings.ACCOUNT_PREFERENCES_SETTINGS"/>
        <intent
            android:action="com.google.android.gms.accountsettings.ACCOUNT_PREFERENCES_SETTINGS"
            android:targetPackage="com.google.android.gms" />
    </PreferenceScreen>
</PreferenceScreen>