OLD | NEW |
1 <service | 1 <service |
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 | |
14 android:exported="false" | 2 android:exported="false" |
15 android:name="org.mozilla.gecko.fxa.receivers.FxAccountDeletedServic
e" > | 3 android:name="org.mozilla.gecko.fxa.receivers.FxAccountDeletedServic
e" > |
16 </service> | 4 </service> |
17 | 5 |
18 <service | 6 <service |
19 android:exported="false" | 7 android:exported="false" |
20 android:name="org.mozilla.gecko.fxa.sync.FxAccountProfileService" > | 8 android:name="org.mozilla.gecko.fxa.sync.FxAccountProfileService" > |
21 </service> | 9 </service> |
22 | 10 |
23 <!-- Firefox Sync. --> | 11 <!-- Firefox Sync. --> |
24 <service | 12 <service |
25 android:exported="false" | 13 android:exported="false" |
26 android:name="org.mozilla.gecko.fxa.sync.FxAccountSyncService" > | 14 android:name="org.mozilla.gecko.fxa.sync.FxAccountSyncService" > |
27 <intent-filter > | 15 <intent-filter > |
28 <action android:name="android.content.SyncAdapter" /> | 16 <action android:name="android.content.SyncAdapter" /> |
29 </intent-filter> | 17 </intent-filter> |
30 | 18 |
31 <meta-data | 19 <meta-data |
32 android:name="android.content.SyncAdapter" | 20 android:name="android.content.SyncAdapter" |
33 android:resource="@xml/fxaccount_syncadapter" /> | 21 android:resource="@xml/fxaccount_syncadapter" /> |
34 </service> | 22 </service> |
OLD | NEW |