mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-12 20:18:00 +01:00
21 lines
1.2 KiB
XML
21 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="net.dosowisko.${LIBSUPERDERPY_GAMENAME}"
|
|
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" />
|
|
<application android:label="@string/app_name" android:debuggable="${LIBSUPERDERPY_ANDROID_DEBUGGABLE}" android:icon="@mipmap/${LIBSUPERDERPY_GAMENAME}">
|
|
<activity android:name="net.dosowisko.${LIBSUPERDERPY_GAMENAME}.SuperDerpyActivity"
|
|
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>
|