Skip to content

Commit a843410

Browse files
authored
Specify Vulkan version needed in AndroidManifest.xml (#3095)
1 parent d60857e commit a843410

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<!-- OpenGL ES 3.0 required -->
3+
<uses-feature
4+
android:glEsVersion="0x00030000"
5+
android:required="true"/>
6+
</manifest>

platform/android/MapLibreAndroid/src/main/AndroidManifest.xml

-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2-
3-
<uses-feature
4-
android:glEsVersion="0x00030000"
5-
android:required="true"/>
62
<uses-feature
73
android:name="android.hardware.wifi"
84
android:required="false"/> <!-- Implied by ACCESS_WIFI_STATE. -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<!-- Vulkan 1.0 required -->
3+
<uses-feature
4+
android:name="android.hardware.vulkan.version"
5+
android:version="0x400003"
6+
android:required="true" />
7+
</manifest>

0 commit comments

Comments
 (0)