mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c0ce94d60e
--HG-- rename : mobile/android/base/resources/xml/fxaccount_bookmarks_syncadapter.xml => mobile/android/base/resources/xml/fxaccount_syncadapter.xml
23 lines
891 B
XML
23 lines
891 B
XML
<service
|
|
android:exported="true"
|
|
android:name="org.mozilla.gecko.fxa.authenticator.FxAccountAuthenticatorService" >
|
|
<intent-filter >
|
|
<action android:name="android.accounts.AccountAuthenticator" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.accounts.AccountAuthenticator"
|
|
android:resource="@xml/fxaccount_authenticator" />
|
|
</service>
|
|
<service
|
|
android:exported="false"
|
|
android:name="org.mozilla.gecko.fxa.sync.FxAccountSyncService" >
|
|
<intent-filter >
|
|
<action android:name="android.content.SyncAdapter" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.content.SyncAdapter"
|
|
android:resource="@xml/fxaccount_syncadapter" />
|
|
</service>
|