Skip to content

Commit

Permalink
Do not require Android features that should be optional (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm authored Nov 12, 2024
1 parent 0a41528 commit 943103f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pretixprint/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
<uses-feature
android:name="android.hardware.usb.host"
android:required="false" />
<!-- The following are added as "required" by the permissions, but we want them to be optional -->
<!-- See https://developer.android.com/guide/topics/manifest/uses-feature-element#permissions -->
<uses-feature
android:name="android.hardware.bluetooth"
android:required="false" />

<uses-sdk tools:overrideLibrary="com.evolis.libevolis" />

<application
Expand Down

0 comments on commit 943103f

Please # to comment.