Skip to content

Commit cf30ad6

Browse files
committed
Add tablet screenshots as well
While these don't look as pretty as the phone ones, the application is still usable
1 parent dd4a880 commit cf30ad6

File tree

182 files changed

+40
-12
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+40
-12
lines changed
Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
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">
23
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
34
calls FlutterMain.startInitialization(this); in its onCreate method.
45
In most cases you can leave this as-is, but you if you want to provide
@@ -7,31 +8,48 @@
78

89
<uses-permission android:name="android.permission.WAKE_LOCK" />
910
<uses-permission android:name="android.permission.INTERNET" />
11+
1012
<queries>
1113
<intent>
1214
<action android:name="android.intent.action.VIEW" />
1315
<data android:scheme="https" />
1416
</intent>
1517
</queries>
1618

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" />
1824

1925
<application
2026
android:name="${applicationName}"
2127
android:label="wger"
2228
android:icon="@mipmap/ic_launcher"
23-
android:networkSecurityConfig="@xml/network_security_config"
24-
>
29+
android:networkSecurityConfig="@xml/network_security_config">
2530

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" />
2837

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">
3046
<!-- Specifies an Android theme to apply to this Activity as soon as
3147
the Android process has started. This theme is visible to the user
3248
while the Flutter UI initializes. After that, this theme continues
3349
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" />
3553
<intent-filter>
3654
<action android:name="android.intent.action.MAIN" />
3755
<category android:name="android.intent.category.LAUNCHER" />
@@ -41,6 +59,8 @@
4159

4260
<!-- Don't delete the meta-data below.
4361
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" />
4565
</application>
4666
</manifest>
61.1 KB
236 KB
20.2 KB
24.9 KB
314 KB
47.8 KB
76.8 KB
309 KB
22.3 KB

0 commit comments

Comments
 (0)