2016-11-07 01:45:12 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="net.dosowisko.${LIBSUPERDERPY_GAMENAME}"
|
2017-07-22 01:12:05 +02:00
|
|
|
android:versionCode="${LIBSUPERDERPY_RELEASE}"
|
2017-06-26 15:40:04 +02:00
|
|
|
android:versionName="${LIBSUPERDERPY_VERSION}"
|
2017-06-26 13:53:20 +02:00
|
|
|
android:installLocation="auto">
|
2017-08-19 01:25:02 +02:00
|
|
|
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="${ANDROID_TARGET_VERSION}" />
|
2017-08-14 02:02:56 +02:00
|
|
|
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
|
2017-07-22 01:12:05 +02:00
|
|
|
<application android:label="@string/app_name" android:debuggable="${LIBSUPERDERPY_ANDROID_DEBUGGABLE}" android:icon="@mipmap/${LIBSUPERDERPY_GAMENAME}">
|
2016-11-07 01:45:12 +01:00
|
|
|
<activity android:name="net.dosowisko.${LIBSUPERDERPY_GAMENAME}.SuperDerpyActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
2017-06-26 03:18:54 +02:00
|
|
|
android:screenOrientation="${LIBSUPERDERPY_ANDROID_ORIENTATION}"
|
2016-11-08 17:42:23 +01:00
|
|
|
android:configChanges="screenLayout|uiMode|orientation|screenSize">
|
2016-11-07 01:45:12 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|