Add a further intent filter to grab the firmware/apps from the download content provider. Tested to work with miband firmware on android 5.

live-activity-data
Daniele Gobbetti 2015-09-17 16:17:39 +02:00
parent 55341678b3
commit 502c005a0e
1 changed files with 8 additions and 0 deletions

View File

@ -171,6 +171,14 @@
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
</intent-filter>
<!-- to receive the firmwares from the donwload content provider -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/octet-stream" />
</intent-filter>
</activity>
<service