mirror of
https://github.com/love2d/love-android.git
synced 2026-08-17 19:24:07 +02:00
Fix the previous PR's error (#244)
* Abstract configurable values to gradle.properties * Remove gms in AndroidManifest * Fix AndroidManifest
This commit is contained in:
@@ -25,15 +25,15 @@
|
|||||||
<application
|
<application
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:icon="@drawable/love"
|
android:icon="@drawable/love"
|
||||||
android:label="LÖVE for Android"
|
android:label="${NAME}"
|
||||||
android:usesCleartextTraffic="true" >
|
android:usesCleartextTraffic="true" >
|
||||||
<activity
|
<activity
|
||||||
android:name="org.love2d.android.GameActivity"
|
android:name="${ACTIVITY_NAME}"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden|navigation"
|
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden|navigation"
|
||||||
android:label="LÖVE for Android"
|
android:label="${NAME}"
|
||||||
android:launchMode="singleTask"
|
android:launchMode="singleTask"
|
||||||
android:screenOrientation="landscape"
|
android:screenOrientation="${ORIENTATION}"
|
||||||
android:resizeableActivity="false"
|
android:resizeableActivity="false"
|
||||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|||||||
+1
-1
Submodule love/src/jni/love updated: 0b0ff5551f...9963d1247c
Reference in New Issue
Block a user