• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2    package="com.yourcompany.animated_list">
3
4    <!-- The INTERNET permission is required for development. Specifically,
5         flutter needs it to communicate with the running application
6         to allow setting breakpoints, to provide hot reload, etc.
7    -->
8    <uses-permission android:name="android.permission.INTERNET"/>
9
10    <!-- io.flutter.app.FlutterApplication is an android.app.Application that
11         calls FlutterMain.startInitialization(this); in its onCreate method.
12         In most cases you can leave this as-is, but you if you want to provide
13         additional functionality it is fine to subclass or reimplement
14         FlutterApplication and put your custom class here. -->
15    <application android:name="io.flutter.app.FlutterApplication" android:label="animated_list" android:icon="@mipmap/ic_launcher">
16        <activity android:name=".MainActivity"
17                  android:launchMode="singleTop"
18                  android:theme="@android:style/Theme.Black.NoTitleBar"
19                  android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
20                  android:hardwareAccelerated="true"
21                  android:windowSoftInputMode="adjustResize">
22            <intent-filter>
23                <action android:name="android.intent.action.MAIN"/>
24                <category android:name="android.intent.category.LAUNCHER"/>
25            </intent-filter>
26        </activity>
27    </application>
28</manifest>
29