axmol/samples/Javascript/TestJavascript/proj.android/AndroidManifest.xml

37 lines
1.4 KiB
XML
Raw Normal View History

2012-05-28 16:58:16 +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.testjavascript"
2012-05-28 16:58:16 +08:00
android:versionCode="1"
android:versionName="1.0">
2013-02-22 00:37:07 +08:00
<uses-sdk android:minSdkVersion="9"/>
<uses-feature android:glEsVersion="0x00020000" />
2013-05-15 19:56:58 +08:00
<uses-feature />
2012-05-28 16:58:16 +08:00
2013-05-15 19:56:58 +08:00
<uses-permission android:name="android.permission.INTERNET" />
2012-05-28 16:58:16 +08:00
<application android:label="@string/app_name"
android:icon="@drawable/icon">
2013-12-30 15:58:04 +08:00
<activity android:name=".Cocos2dxActivity"
2012-05-28 16:58:16 +08:00
android:label="@string/app_name"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:configChanges="orientation">
2013-07-31 03:26:31 +08:00
<!-- Tell NativeActivity the name of our .so -->
<meta-data android:name="android.app.lib_name"
android:value="testjavascript" />
2012-05-28 16:58:16 +08:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<supports-screens android:anyDensity="true"
2012-05-28 16:58:16 +08:00
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"/>
2012-05-28 16:58:16 +08:00
</manifest>