AndroidManifest.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.esotericsoftware.cocos2dx"
  4. android:versionCode="1"
  5. android:versionName="1.0"
  6. android:installLocation="auto">
  7. <uses-sdk android:minSdkVersion="13"/>
  8. <uses-feature android:glEsVersion="0x00020000" />
  9. <application android:label="@string/app_name"
  10. android:icon="@drawable/icon">
  11. <!-- Tell Cocos2dxActivity the name of our .so -->
  12. <meta-data android:name="android.app.lib_name"
  13. android:value="MyGame" />
  14. <activity android:name="org.cocos2dx.cpp.AppActivity"
  15. android:label="@string/app_name"
  16. android:screenOrientation="landscape"
  17. android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  18. android:configChanges="orientation|keyboardHidden|screenSize">
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21. <category android:name="android.intent.category.LAUNCHER" />
  22. </intent-filter>
  23. </activity>
  24. </application>
  25. <supports-screens android:anyDensity="true"
  26. android:smallScreens="true"
  27. android:normalScreens="true"
  28. android:largeScreens="true"
  29. android:xlargeScreens="true"/>
  30. <uses-permission android:name="android.permission.INTERNET"/>
  31. </manifest>