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