1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-25 06:21:04 +02:00

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

This commit is contained in:
Daniele Gobbetti 2015-09-17 16:17:39 +02:00
parent 55341678b3
commit 502c005a0e

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