[Android] Require OpenGL ES 2.0

This was already an implicit requirement, as it's the only version implemented
in libwebrtc.

The reason to add this is to (defensively) try to filter old devices which may
not implement it.

WebRTC's own Android demo app defines this.
This commit is contained in:
Saúl Ibarra Corretgé 2017-07-03 15:16:02 +02:00 committed by Любомир Маринов
parent 0b5431b795
commit 4efbbe14b1
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,9 @@
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus"/>
<!-- Tell the system this app requires OpenGL ES 2.0. -->
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<application android:allowBackup="true"
android:label="@string/app_name"
android:supportsRtl="true">