1
1
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package =" com.hustlecreatives.flood_mobile" >
2
+ package =" com.hustlecreatives.flood_mobile" >
3
3
4
4
<uses-permission android : name =" android.permission.INTERNET" />
5
5
<uses-permission android : name =" android.permission.READ_EXTERNAL_STORAGE" />
13
13
</queries >
14
14
15
15
<application
16
- android : requestLegacyExternalStorage =" true"
17
- android : label =" Flood"
18
- android : usesCleartextTraffic =" true"
19
- android : icon =" @mipmap/ic_launcher" >
16
+ android : requestLegacyExternalStorage =" true"
17
+ android : label =" Flood"
18
+ android : usesCleartextTraffic =" true"
19
+ android : icon =" @mipmap/ic_launcher" >
20
20
<provider
21
- android : name =" vn.hunghd.flutterdownloader.DownloadedFileProvider"
22
- android : authorities =" ${applicationId}.flutter_downloader.provider"
23
- android : exported =" false"
24
- android : grantUriPermissions =" true" >
21
+ android : name =" vn.hunghd.flutterdownloader.DownloadedFileProvider"
22
+ android : authorities =" ${applicationId}.flutter_downloader.provider"
23
+ android : exported =" false"
24
+ android : grantUriPermissions =" true" >
25
25
<meta-data
26
- android : name =" android.support.FILE_PROVIDER_PATHS"
27
- android : resource =" @xml/provider_paths" />
26
+ android : name =" android.support.FILE_PROVIDER_PATHS"
27
+ android : resource =" @xml/provider_paths" />
28
28
</provider >
29
29
<activity
30
- android : exported =" true"
31
- android : name =" .MainActivity"
32
- android : launchMode =" singleTop"
33
- android : theme =" @style/LaunchTheme"
34
- android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
35
- android : hardwareAccelerated =" true"
36
- android : windowSoftInputMode =" adjustResize" >
30
+ android : exported =" true"
31
+ android : name =" .MainActivity"
32
+ android : launchMode =" singleTop"
33
+ android : theme =" @style/LaunchTheme"
34
+ android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
35
+ android : hardwareAccelerated =" true"
36
+ android : windowSoftInputMode =" adjustResize" >
37
37
<!-- Specifies an Android theme to apply to this Activity as soon as
38
38
the Android process has started. This theme is visible to the user
39
39
while the Flutter UI initializes. After that, this theme continues
40
40
to determine the Window background behind the Flutter UI. -->
41
41
<meta-data
42
- android : name =" io.flutter.embedding.android.NormalTheme"
43
- android : resource =" @style/NormalTheme"
44
- />
42
+ android : name =" io.flutter.embedding.android.NormalTheme"
43
+ android : resource =" @style/NormalTheme"
44
+ />
45
45
<!-- Displays an Android View that continues showing the launch screen
46
46
Drawable until Flutter paints its first frame, then this splash
47
47
screen fades out. A splash screen is useful to avoid any visual
48
48
gap between the end of Android's launch screen and the painting of
49
49
Flutter's first frame. -->
50
50
<meta-data
51
- android : name =" io.flutter.embedding.android.SplashScreenDrawable"
52
- android : resource =" @drawable/launch_background"
53
- />
51
+ android : name =" io.flutter.embedding.android.SplashScreenDrawable"
52
+ android : resource =" @drawable/launch_background"
53
+ />
54
54
<intent-filter >
55
55
<action android : name =" android.intent.action.MAIN" />
56
56
<category android : name =" android.intent.category.LAUNCHER" />
57
57
</intent-filter >
58
+ <intent-filter android : icon =" @mipmap/ic_launcher"
59
+ android : label =" Flood"
60
+ android : priority =" 1" >
61
+ <action android : name =" android.intent.action.VIEW" />
62
+ <category android : name =" android.intent.category.DEFAULT" />
63
+ <category android : name =" android.intent.category.BROWSABLE" />
64
+ <data android : scheme =" content" />
65
+ <data android : scheme =" http" />
66
+ <data android : scheme =" file" />
67
+ <data android : mimeType =" application/x-bittorrent" />
68
+ </intent-filter >
58
69
</activity >
59
70
<!-- Don't delete the meta-data below.
60
71
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
61
72
<meta-data
62
- android : name =" flutterEmbedding"
63
- android : value =" 2" />
73
+ android : name =" flutterEmbedding"
74
+ android : value =" 2" />
64
75
</application >
65
- </manifest >
76
+ </manifest >
0 commit comments