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