mirror of https://github.com/axmolengine/axmol.git
21 lines
1.3 KiB
XML
21 lines
1.3 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.cocos2dx.HelloAds" android:versionCode="1" android:versionName="1.0">
|
|
|
|
<uses-sdk android:minSdkVersion="8" />
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
|
|
|
<activity android:configChanges="orientation" android:label="@string/app_name" android:name=".HelloAds" android:screenOrientation="landscape" android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" android:name="com.google.ads.AdActivity" />
|
|
</application>
|
|
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
</manifest> |