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"
|
|
|
|
package="org.cocos2dx.tests"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
2011-06-22 13:59:31 +08:00
|
|
|
<application android:label="@string/app_name" android:debuggable="true" android:icon="@drawable/icon">
|
2010-12-06 09:51:21 +08:00
|
|
|
<activity android:name=".TestsDemo"
|
|
|
|
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-05-19 11:26:57 +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-04-15 17:15:05 +08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2010-12-06 09:51:21 +08:00
|
|
|
</manifest>
|