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

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <provider android:name="org.mozilla.gecko.background.healthreport.HealthReportProvider"
michael@0 2 android:authorities="@ANDROID_PACKAGE_NAME@.health"
michael@0 3 android:permission="@ANDROID_PACKAGE_NAME@.permissions.HEALTH_PROVIDER">
michael@0 4 </provider>
michael@0 5
michael@0 6 <!-- BroadcastReceiver is a thin receiver whose purpose is to
michael@0 7 start the background service in response to external events,
michael@0 8 some sent by the system and some particular to Health Report.
michael@0 9 -->
michael@0 10 <receiver android:name="org.mozilla.gecko.background.healthreport.HealthReportBroadcastReceiver" >
michael@0 11 <intent-filter>
michael@0 12 <!-- Startup. -->
michael@0 13 <action android:name="android.intent.action.BOOT_COMPLETED" />
michael@0 14 </intent-filter>
michael@0 15 <intent-filter>
michael@0 16 <!-- SD card remounted. -->
michael@0 17 <action android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE" />
michael@0 18 </intent-filter>
michael@0 19 <intent-filter >
michael@0 20 <!-- Toggle Health Report upload service alarm (based on preferences value) -->
michael@0 21 <action android:name="@ANDROID_PACKAGE_NAME@.HEALTHREPORT_UPLOAD_PREF" />
michael@0 22 </intent-filter>
michael@0 23 <intent-filter >
michael@0 24 <!-- Enable Health Report prune service alarm -->
michael@0 25 <action android:name="@ANDROID_PACKAGE_NAME@.HEALTHREPORT_PRUNE" />
michael@0 26 </intent-filter>
michael@0 27 </receiver>

mercurial