1
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android" package =" de.wger.flutter" >
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
+ package =" de.wger.flutter" >
2
3
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
3
4
calls FlutterMain.startInitialization(this); in its onCreate method.
4
5
In most cases you can leave this as-is, but you if you want to provide
7
8
8
9
<uses-permission android : name =" android.permission.WAKE_LOCK" />
9
10
<uses-permission android : name =" android.permission.INTERNET" />
11
+
10
12
<queries >
11
13
<intent >
12
14
<action android : name =" android.intent.action.VIEW" />
13
15
<data android : scheme =" https" />
14
16
</intent >
15
17
</queries >
16
18
17
- <supports-screens android : smallScreens =" true" android : normalScreens =" true" android : largeScreens =" false" android : xlargeScreens =" false" />
19
+ <supports-screens
20
+ android : smallScreens =" true"
21
+ android : normalScreens =" true"
22
+ android : largeScreens =" true"
23
+ android : xlargeScreens =" true" />
18
24
19
25
<application
20
26
android : name =" ${applicationName}"
21
27
android : label =" wger"
22
28
android : icon =" @mipmap/ic_launcher"
23
- android : networkSecurityConfig =" @xml/network_security_config"
24
- >
29
+ android : networkSecurityConfig =" @xml/network_security_config" >
25
30
26
- <meta-data android : name =" wger.api_key" android : value =" ${WGER_API_KEY}" />
27
- <meta-data android : name =" wger.check_min_app_version" android : value =" true" />
31
+ <meta-data
32
+ android : name =" wger.api_key"
33
+ android : value =" ${WGER_API_KEY}" />
34
+ <meta-data
35
+ android : name =" wger.check_min_app_version"
36
+ android : value =" true" />
28
37
29
- <activity android : name =" .MainActivity" android : exported =" true" android : launchMode =" singleTop" android : theme =" @style/LaunchTheme" android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android : hardwareAccelerated =" true" android : windowSoftInputMode =" adjustResize" >
38
+ <activity
39
+ android : name =" .MainActivity"
40
+ android : exported =" true"
41
+ android : launchMode =" singleTop"
42
+ android : theme =" @style/LaunchTheme"
43
+ android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
44
+ android : hardwareAccelerated =" true"
45
+ android : windowSoftInputMode =" adjustResize" >
30
46
<!-- Specifies an Android theme to apply to this Activity as soon as
31
47
the Android process has started. This theme is visible to the user
32
48
while the Flutter UI initializes. After that, this theme continues
33
49
to determine the Window background behind the Flutter UI. -->
34
- <meta-data android : name =" io.flutter.embedding.android.NormalTheme" android : resource =" @style/NormalTheme" />
50
+ <meta-data
51
+ android : name =" io.flutter.embedding.android.NormalTheme"
52
+ android : resource =" @style/NormalTheme" />
35
53
<intent-filter >
36
54
<action android : name =" android.intent.action.MAIN" />
37
55
<category android : name =" android.intent.category.LAUNCHER" />
41
59
42
60
<!-- Don't delete the meta-data below.
43
61
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
44
- <meta-data android : name =" flutterEmbedding" android : value =" 2" />
62
+ <meta-data
63
+ android : name =" flutterEmbedding"
64
+ android : value =" 2" />
45
65
</application >
46
66
</manifest >
0 commit comments