mobile/android/services/manifests/SyncAndroidManifest_services.xml.in

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     1         <service
     2             android:exported="false"
     3             android:name="org.mozilla.gecko.sync.setup.SyncAuthenticatorService" >
     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/sync_authenticator" />
    11         </service>
    12         <service
    13             android:exported="false"
    14             android:name="org.mozilla.gecko.sync.syncadapter.SyncService" >
    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/sync_syncadapter" />
    22         </service>
    23         <service
    24             android:exported="false"
    25             android:name="org.mozilla.gecko.sync.receivers.SyncAccountDeletedService" >
    26         </service>

mercurial