1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Add screenSize to configChanges in android manifest

This commit is contained in:
hogliux 2016-02-03 12:55:20 +00:00
parent 76f4ca8a63
commit bd9d67fd30

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");