diff options
author | Maksim <MoNTE48@mail.ua> | 2020-06-23 20:00:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 19:00:34 +0100 |
commit | 646af2ef5f52cc3a04ea806d13dd2a048395da88 (patch) | |
tree | 149bc867cadd040ebcee02c75912a6527d34cb46 /build | |
parent | f7c78993f61e410f969f981c31833e465e015fde (diff) | |
download | minetest-646af2ef5f52cc3a04ea806d13dd2a048395da88.tar.gz minetest-646af2ef5f52cc3a04ea806d13dd2a048395da88.tar.bz2 minetest-646af2ef5f52cc3a04ea806d13dd2a048395da88.zip |
Android: fix maxAspectRatio (should be float) (#10080)
Diffstat (limited to 'build')
-rw-r--r-- | build/android/app/src/main/AndroidManifest.xml | 8 |
1 files changed, 4 insertions, 4 deletions
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 @@ <meta-data android:name="android.max_aspect" - android:value="3" /> + android:value="3.0" /> <activity android:name=".MainActivity" android:configChanges="orientation|keyboardHidden|navigation|screenSize" - android:maxAspectRatio="3" + android:maxAspectRatio="3.0" android:screenOrientation="sensorLandscape" android:theme="@style/AppTheme"> <intent-filter> @@ -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"> <intent-filter> @@ -55,7 +55,7 @@ <activity android:name=".InputDialogActivity" - android:maxAspectRatio="3" + android:maxAspectRatio="3.0" android:theme="@style/InputTheme" /> <service |