mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
abbc2d7245
The stumbler is a geolocation data collecting and uploading service. This code is a partial export of the MozStumbler repository hosted at https://github.com/mozilla/MozStumbler.
16 lines
710 B
XML
16 lines
710 B
XML
<service
|
|
android:name="org.mozilla.mozstumbler.service.stumblerthread.StumblerService"
|
|
android:label="stumbler">
|
|
</service>
|
|
|
|
<receiver android:name="org.mozilla.mozstumbler.service.uploadthread.UploadAlarmReceiver" />
|
|
<service android:name="org.mozilla.mozstumbler.service.uploadthread.UploadAlarmReceiver$UploadAlarmService" />
|
|
|
|
<receiver android:name="org.mozilla.mozstumbler.service.mainthread.PassiveServiceReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<action android:name="android.intent.action.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE" />
|
|
<action android:name="@ANDROID_PACKAGE_NAME@.STUMBLER_PREF" />
|
|
</intent-filter>
|
|
</receiver>
|