From: Maksim Date: Tue, 23 Jun 2020 18:00:34 +0000 (+0200) Subject: Android: fix maxAspectRatio (should be float) (#10080) X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=646af2ef5f52cc3a04ea806d13dd2a048395da88;p=oweals%2Fminetest.git Android: fix maxAspectRatio (should be float) (#10080) --- diff --git a/build/android/app/src/main/AndroidManifest.xml b/build/android/app/src/main/AndroidManifest.xml index aa5af110e..0a7c8d95a 100644 --- a/build/android/app/src/main/AndroidManifest.xml +++ b/build/android/app/src/main/AndroidManifest.xml @@ -23,12 +23,12 @@ + android:value="3.0" /> @@ -42,7 +42,7 @@ android:configChanges="orientation|keyboard|keyboardHidden|navigation|screenSize|smallestScreenSize" android:hardwareAccelerated="true" android:launchMode="singleTask" - android:maxAspectRatio="3" + android:maxAspectRatio="3.0" android:screenOrientation="sensorLandscape" android:theme="@style/AppTheme"> @@ -55,7 +55,7 @@