diff options
author | volzhs <volzhs@gmail.com> | 2016-06-10 14:09:33 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2016-06-10 14:09:33 +0900 |
commit | 4f64935ab62f7837c0a1cd6b8f069ef568928474 (patch) | |
tree | 35bf992c33965e38b566c89cbf7b7c567086ad3f | |
parent | 00bfdc834bc028e7c15e939662a72353250d00f3 (diff) |
fix android support screen property for large screen
-rw-r--r-- | platform/android/AndroidManifest.xml.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/AndroidManifest.xml.template b/platform/android/AndroidManifest.xml.template index 852a821c65..2a24c7cdc2 100644 --- a/platform/android/AndroidManifest.xml.template +++ b/platform/android/AndroidManifest.xml.template @@ -7,7 +7,7 @@ > <supports-screens android:smallScreens="true" android:normalScreens="true" - android:largeScreens="false" + android:largeScreens="true" android:xlargeScreens="true"/> <application android:label="@string/godot_project_name_string" android:icon="@drawable/icon" android:allowBackup="false" $$ADD_APPATTRIBUTE_CHUNKS$$ > |