Skip to content

Commit

Permalink
Specify Vulkan version needed in AndroidManifest.xml (#3095)
Browse files Browse the repository at this point in the history
  • Loading branch information
louwers authored Dec 16, 2024
1 parent d60857e commit a843410
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- OpenGL ES 3.0 required -->
<uses-feature
android:glEsVersion="0x00030000"
android:required="true"/>
</manifest>
4 changes: 0 additions & 4 deletions platform/android/MapLibreAndroid/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-feature
android:glEsVersion="0x00030000"
android:required="true"/>
<uses-feature
android:name="android.hardware.wifi"
android:required="false"/> <!-- Implied by ACCESS_WIFI_STATE. -->
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Vulkan 1.0 required -->
<uses-feature
android:name="android.hardware.vulkan.version"
android:version="0x400003"
android:required="true" />
</manifest>

0 comments on commit a843410

Please sign in to comment.