mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
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>
|
|
<service
|
|
android:exported="false"
|
|
android:name="org.mozilla.gecko.fxa.receivers.FxAccountDeletedService" >
|
|
</service>
|