mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
20 lines
1020 B
XML
20 lines
1020 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.yourcompany.microbenchmarks">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application android:name="io.flutter.app.FlutterApplication" android:label="microbenchmarks" android:icon="@mipmap/ic_launcher">
|
|
<activity android:name="io.flutter.app.FlutterActivity"
|
|
android:launchMode="singleTop"
|
|
android:theme="@android:style/Theme.Black.NoTitleBar"
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
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>
|