Skip to content

Commit

Permalink
bug: fix crash on android 14
Browse files Browse the repository at this point in the history
  • Loading branch information
juliansteenbakker committed Oct 10, 2023
1 parent 40d1ccd commit 877ad10
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

<uses-permission android:name="android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE" />

<application>
<service android:name=".DfuService" />
<service android:name=".DfuService"
android:foregroundServiceType="connectedDevice"
android:exported="false"/>
</application>
</manifest>

0 comments on commit 877ad10

Please sign in to comment.