Browse Source

Add screenSize to configChanges in android manifest

tags/2021-05-28
hogliux 9 years ago
parent
commit
bd9d67fd30
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Android.h

+ 1
- 1
extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Android.h View File

@@ -494,7 +494,7 @@ public:
XmlElement* act = app->createNewChildElement ("activity");
act->setAttribute ("android:name", getActivitySubClassName());
act->setAttribute ("android:label", "@string/app_name");
act->setAttribute ("android:configChanges", "keyboardHidden|orientation");
act->setAttribute ("android:configChanges", "keyboardHidden|orientation|screenSize");
act->setAttribute ("android:screenOrientation", getScreenOrientationString());
XmlElement* intent = act->createNewChildElement ("intent-filter");


Loading…
Cancel
Save