Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Android: fix maxAspectRatio (should be float) (#10080)
  • Loading branch information
Maksim committed Jun 23, 2020
1 parent f7c7899 commit 646af2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/android/app/src/main/AndroidManifest.xml
Expand Up @@ -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>
Expand All @@ -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>
Expand All @@ -55,7 +55,7 @@

<activity
android:name=".InputDialogActivity"
android:maxAspectRatio="3"
android:maxAspectRatio="3.0"
android:theme="@style/InputTheme" />

<service
Expand Down

0 comments on commit 646af2e

Please sign in to comment.