2013-02-19 15:38:30 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.cocos2dx.hellocpp"
|
|
|
|
android:versionCode="1"
|
2014-06-17 12:03:20 +08:00
|
|
|
android:versionName="1.0"
|
|
|
|
android:installLocation="auto">
|
2013-02-19 15:38:30 +08:00
|
|
|
|
2013-07-24 17:27:29 +08:00
|
|
|
<uses-sdk android:minSdkVersion="9"/>
|
2013-02-19 15:38:30 +08:00
|
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
|
|
|
|
|
|
|
<application android:label="@string/app_name"
|
2013-08-06 10:07:37 +08:00
|
|
|
android:icon="@drawable/icon">
|
2014-05-16 15:55:00 +08:00
|
|
|
|
|
|
|
<!-- Tell Cocos2dxActivity the name of our .so -->
|
|
|
|
<meta-data android:name="android.app.lib_name"
|
|
|
|
android:value="cocos2dcpp" />
|
2013-08-06 10:07:37 +08:00
|
|
|
|
2014-03-25 15:43:42 +08:00
|
|
|
<activity android:name="org.cocos2dx.cpp.AppActivity"
|
2013-02-19 15:38:30 +08:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
2015-10-05 15:51:32 +08:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize">
|
2013-08-06 10:07:37 +08:00
|
|
|
|
2013-02-19 15:38:30 +08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
2013-08-06 10:07:37 +08:00
|
|
|
|
2013-10-29 06:12:51 +08:00
|
|
|
<supports-screens android:anyDensity="true"
|
2013-02-19 15:38:30 +08:00
|
|
|
android:smallScreens="true"
|
2013-10-29 06:12:51 +08:00
|
|
|
android:normalScreens="true"
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:xlargeScreens="true"/>
|
2013-08-06 10:07:37 +08:00
|
|
|
|
2013-02-19 15:38:30 +08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
</manifest>
|