mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
23 lines
1.1 KiB
XML
23 lines
1.1 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.yourcompany.complexLayout"
|
|
android:versionCode="1"
|
|
android:versionName="0.0.1">
|
|
|
|
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application android:name="org.domokit.sky.shell.SkyApplication" android:label="complex_layout" android:icon="@mipmap/ic_launcher">
|
|
<activity android:name="org.domokit.sky.shell.SkyActivity"
|
|
android:launchMode="singleTop"
|
|
android:theme="@android:style/Theme.Black.NoTitleBar"
|
|
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"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|