-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
27 lines (25 loc) · 1.31 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
27 lines (25 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
<application>
<!-- `flutter run`/`flutter attach` launch MainActivity directly by inspecting <activity>
elements — they don't resolve activity-aliases. Restore the launcher intent-filter on
MainActivity for debug builds only, and disable the `.default` alias so the app
drawer doesn't show two icons. -->
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity-alias
android:name="com.application.dynamic_app_icon_flutter_plus_example.MainActivity.default"
android:targetActivity=".MainActivity"
android:enabled="false"
tools:replace="android:enabled" />
</application>
</manifest>