Merge pull request #1674 from collinjackson/bottom_compose

Make flutter create generate a manifest that is similar to SkyShell.apk, fixes #1587
This commit is contained in:
Collin Jackson 2016-02-08 12:19:41 -08:00
commit c47775fb72

View file

@ -253,8 +253,9 @@ final String _apkManifest = '''
<activity android:name="org.domokit.sky.shell.SkyActivity"
android:launchMode="singleTask"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
android:hardwareAccelerated="true">
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>