Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <service
2 android:exported="true"
3 android:name="org.mozilla.gecko.fxa.authenticator.FxAccountAuthenticatorService" >
4 <intent-filter >
5 <action android:name="android.accounts.AccountAuthenticator" />
6 </intent-filter>
8 <meta-data
9 android:name="android.accounts.AccountAuthenticator"
10 android:resource="@xml/fxaccount_authenticator" />
11 </service>
12 <service
13 android:exported="false"
14 android:name="org.mozilla.gecko.fxa.sync.FxAccountSyncService" >
15 <intent-filter >
16 <action android:name="android.content.SyncAdapter" />
17 </intent-filter>
19 <meta-data
20 android:name="android.content.SyncAdapter"
21 android:resource="@xml/fxaccount_syncadapter" />
22 </service>
23 <service
24 android:exported="false"
25 android:name="org.mozilla.gecko.fxa.receivers.FxAccountDeletedService" >
26 </service>