mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-12 20:18:00 +01:00
22 lines
1.4 KiB
XML
22 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="${LIBSUPERDERPY_APPID}"
|
|
android:versionCode="${LIBSUPERDERPY_RELEASE}"
|
|
android:versionName="${LIBSUPERDERPY_VERSION}"
|
|
android:installLocation="auto">
|
|
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="${ANDROID_TARGET_VERSION}" />
|
|
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
|
|
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" android:resizeable="true" />
|
|
<application android:label="@string/app_name" android:debuggable="${LIBSUPERDERPY_ANDROID_DEBUGGABLE}" android:icon="@mipmap/${LIBSUPERDERPY_GAMENAME}">
|
|
<activity android:name="net.dosowisko.libsuperderpy.Activity"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="${LIBSUPERDERPY_ANDROID_ORIENTATION}"
|
|
android:configChanges="screenLayout|uiMode|orientation|screenSize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|