Meshtastic-Android/feature/firmware/src/main/AndroidManifest.xml
James Rich 4b93065c7e
feat: Add firmware update module for Nordic nRF devices (#3782)
Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
2025-11-24 19:02:53 +00:00

15 lines
613 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE" />
<application>
<service android:name=".FirmwareDfuService"
android:exported="false"
android:foregroundServiceType="connectedDevice">
<intent-filter>
<action android:name="no.nordicsemi.android.dfu.broadcast.BROADCAST_ACTION" />
</intent-filter>
</service>
</application>
</manifest>