LEFT | RIGHT |
1 <!-- Do not register ABB to Androids AccountManager. See: https://issues
.adblockplus.org/ticket/3994 --> | 1 <!-- Removed FxAccountAuthenticatorService from manifest. See https://is
sues.adblockplus.org/ticket/3994 --> |
2 <!-- | |
3 <service | |
4 android:exported="true" | |
5 android:name="org.mozilla.gecko.fxa.authenticator.FxAccountAuthentic
atorService" > | |
6 <intent-filter > | |
7 <action android:name="android.accounts.AccountAuthenticator" /> | |
8 </intent-filter> | |
9 | |
10 <meta-data | |
11 android:name="android.accounts.AccountAuthenticator" | |
12 android:resource="@xml/fxaccount_authenticator" /> | |
13 </service> | |
14 --> | |
15 <service | 2 <service |
16 android:exported="false" | 3 android:exported="false" |
17 android:name="org.mozilla.gecko.fxa.receivers.FxAccountDeletedServic
e" > | 4 android:name="org.mozilla.gecko.fxa.receivers.FxAccountDeletedServic
e" > |
18 </service> | 5 </service> |
19 | 6 |
20 <service | 7 <service |
21 android:exported="false" | 8 android:exported="false" |
22 android:name="org.mozilla.gecko.fxa.sync.FxAccountProfileService" > | 9 android:name="org.mozilla.gecko.fxa.sync.FxAccountProfileService" > |
23 </service> | 10 </service> |
24 | 11 |
25 <!-- Firefox Sync. --> | 12 <!-- Firefox Sync. --> |
26 <service | 13 <service |
27 android:exported="false" | 14 android:exported="false" |
28 android:name="org.mozilla.gecko.fxa.sync.FxAccountSyncService" > | 15 android:name="org.mozilla.gecko.fxa.sync.FxAccountSyncService" > |
29 <intent-filter > | 16 <intent-filter > |
30 <action android:name="android.content.SyncAdapter" /> | 17 <action android:name="android.content.SyncAdapter" /> |
31 </intent-filter> | 18 </intent-filter> |
32 | 19 |
33 <meta-data | 20 <meta-data |
34 android:name="android.content.SyncAdapter" | 21 android:name="android.content.SyncAdapter" |
35 android:resource="@xml/fxaccount_syncadapter" /> | 22 android:resource="@xml/fxaccount_syncadapter" /> |
36 </service> | 23 </service> |
LEFT | RIGHT |