Fix the previous PR's error (#244)

* Abstract configurable values to gradle.properties

* Remove gms in AndroidManifest

* Fix AndroidManifest
This commit is contained in:
flamendless
2023-02-06 20:50:46 +08:00
committed by GitHub
parent 69dcd4b63b
commit a0740420e8
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -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>