Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
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> |