disable split screen mode on Android (#1368)

* disable split screen mode on Android

* increase compileSdkVersion
This commit is contained in:
Roman Volosovskyi 2017-06-28 08:49:46 +03:00 committed by GitHub
parent fa8fe11bd7
commit 348fe17816
2 changed files with 3 additions and 2 deletions

View File

@ -100,7 +100,7 @@ def getVersionName = { ->
}
android {
compileSdkVersion 23
compileSdkVersion 24
buildToolsVersion "23.0.1"
defaultConfig {

View File

@ -40,7 +40,8 @@
android:label="@string/app_name"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:resizeableActivity="false">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>