mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 21:03:08 +09:00
34 lines
No EOL
1.2 KiB
XML
34 lines
No EOL
1.2 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.receivers.FxAccountDeletedService" >
|
|
</service>
|
|
|
|
<service
|
|
android:exported="false"
|
|
android:name="org.mozilla.gecko.fxa.sync.FxAccountProfileService" >
|
|
</service>
|
|
|
|
<!-- Firefox Sync. -->
|
|
<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> |