mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
#filter substitution
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<PreferenceCategory
|
|
android:title="@string/sync_settings_options" />
|
|
<PreferenceScreen
|
|
android:key="sync_options"
|
|
android:title="@string/sync_title_pair"
|
|
android:summary="@string/sync_settings_summary_pair">
|
|
<intent
|
|
android:action="android.intent.action.MAIN"
|
|
android:targetPackage="@ANDROID_PACKAGE_NAME@"
|
|
android:targetClass="org.mozilla.gecko.sync.setup.activities.SetupSyncActivity">
|
|
<extra
|
|
android:name="isSetup"
|
|
android:value="false" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
<PreferenceScreen
|
|
android:key="sync_configure_engines"
|
|
android:title="@string/sync_configure_engines_title">
|
|
<intent
|
|
android:action="android.intent.action.MAIN"
|
|
android:targetPackage="@ANDROID_PACKAGE_NAME@"
|
|
android:targetClass="org.mozilla.gecko.sync.config.activities.SelectEnginesActivity">
|
|
</intent>
|
|
</PreferenceScreen>
|
|
</PreferenceScreen>
|