AndroidManifest配置之uses-feature---glEsVersion属性

来源:互联网 发布:scala 数组 切分 编辑:程序博客网 时间:2024/05/17 22:34

<uses-feature

android:name="string"

android:required=["true"| "false"]

android:glEsVersion="integer" />


android:glEsVersion 
此项属性表示app所依赖的OpenGL ES的版本,它的值是一个整数,高16位表示OpenGL ES的大版本,低16位表示OpenGL ES的小版本。例如 OpenGL ES 3.2版本对应的整数值为0x00030002,完整配置如下。

<!-- Tell the system this app requires OpenGL ES 3.2. --><uses-feature android:glEsVersion="0x00030002" android:required="true" />
  • 1
  • 2
  • 1
  • 2



原创粉丝点击