51 lines
1.9 KiB
XML
51 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.fitchgc.headlesscocos">
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
|
<!-- Tell Cocos2dxActivity the name of our .so -->
|
|
<meta-data android:name="android.app.lib_name"
|
|
android:value="cocos2djs" />
|
|
<activity android:name=".MainActivity"
|
|
android:screenOrientation="sensorLandscape"
|
|
>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<meta-data android:name="unityplayer.UnityActivity" android:value="true"/>
|
|
</activity>
|
|
</application>
|
|
<supports-screens
|
|
android:anyDensity="true"
|
|
android:largeScreens="true"
|
|
android:normalScreens="true"
|
|
android:smallScreens="true"
|
|
android:xlargeScreens="true" />
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen.multitouch"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen.multitouch.distinct"
|
|
android:required="false" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
android:maxSdkVersion="18" />
|
|
<uses-permission
|
|
android:name="android.permission.READ_EXTERNAL_STORAGE"
|
|
android:maxSdkVersion="18" />
|
|
</manifest> |