gecko/mobile/android/sync/manifests/SyncAndroidManifest_services.xml.in

23 lines
869 B
XML
Raw Normal View History

<service
2012-02-03 13:09:28 -08:00
android:exported="false"
android:name="org.mozilla.gecko.sync.setup.SyncAuthenticatorService" >
<intent-filter >
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/sync_authenticator" />
</service>
<service
2012-02-03 13:09:28 -08:00
android:exported="false"
android:name="org.mozilla.gecko.sync.syncadapter.SyncService" >
<intent-filter >
<action android:name="android.content.SyncAdapter" />
</intent-filter>
<meta-data
android:name="android.content.SyncAdapter"
android:resource="@xml/sync_syncadapter" />
</service>