forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 1
Android Manifest Requirements
slygamer edited this page Apr 14, 2013
·
1 revision
MonoGame uses OpenGL ES 2.0. Google requires the following be added to AndroidManifest.xml in order for the Market to hide the game from devices that do not have support for OpenGL ES 2.0.
<!-- Tell the system this app requires OpenGL ES 2.0. -->
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
The Market can also filter games by the types of texture compression they support. Add a <supports-gl-texture>
node for each type of texture compression used in your game. See the Android documentation for further details on this node.