2010-12-06 09:51:21 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-20 17:06:00 +08:00
|
|
|
package="org.cocos2dx.testcpp"
|
2010-12-06 09:51:21 +08:00
|
|
|
android:versionCode="1"
|
2011-09-27 16:56:45 +08:00
|
|
|
android:versionName="1.0">
|
2011-09-13 16:42:34 +08:00
|
|
|
|
2012-03-20 16:10:12 +08:00
|
|
|
<uses-sdk android:minSdkVersion="8"/>
|
2013-01-21 17:03:55 +08:00
|
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
2011-09-13 16:42:34 +08:00
|
|
|
|
|
|
|
<application android:label="@string/app_name"
|
|
|
|
android:icon="@drawable/icon">
|
|
|
|
|
2012-07-20 17:06:00 +08:00
|
|
|
<activity android:name=".TestCpp"
|
2010-12-06 09:51:21 +08:00
|
|
|
android:label="@string/app_name"
|
2011-04-26 18:04:07 +08:00
|
|
|
android:screenOrientation="landscape"
|
2011-06-24 13:55:00 +08:00
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
|
|
android:configChanges="orientation">
|
2010-12-06 09:51:21 +08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2011-09-13 16:42:34 +08:00
|
|
|
</activity>
|
2010-12-06 09:51:21 +08:00
|
|
|
</application>
|
2011-05-19 11:26:57 +08:00
|
|
|
<supports-screens android:largeScreens="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:anyDensity="true"
|
|
|
|
android:normalScreens="true"/>
|
|
|
|
|
2011-09-13 16:42:34 +08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2010-12-06 09:51:21 +08:00
|
|
|
</manifest>
|