-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-safearea-everywhere
- Loading branch information
Showing
75 changed files
with
1,624 additions
and
1,352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ Podfile.lock | |
/build/ | ||
*.ipa | ||
|
||
ios/Podfile.lock | ||
ios/build/ | ||
|
||
# Web related | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,119 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.thaliapp"> | ||
|
||
|
||
<!-- Required for add_2_calendar. --> | ||
<queries> | ||
<intent> | ||
<action android:name="android.intent.action.INSERT" /> | ||
<data android:mimeType="vnd.android.cursor.item/event" /> | ||
</intent> | ||
<intent> | ||
<action | ||
android:name="android.intent.action.INSERT"/> | ||
<data | ||
android:mimeType="vnd.android.cursor.item/event"/> | ||
</intent> | ||
</queries> | ||
|
||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
|
||
<uses-permission | ||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<application | ||
android:label="@string/app_name" | ||
android:icon="@mipmap/ic_launcher" | ||
android:roundIcon="@mipmap/ic_launcher_round"> | ||
|
||
<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:screenOrientation="portrait" | ||
android:windowSoftInputMode="adjustResize"> | ||
<!-- Specifies an Android theme to apply to this Activity as soon as | ||
the Android process has started. This theme is visible to the user | ||
while the Flutter UI initializes. After that, this theme continues | ||
to determine the Window background behind the Flutter UI. --> | ||
<meta-data | ||
android:name="io.flutter.embedding.android.NormalTheme" | ||
android:resource="@style/NormalTheme" | ||
/> | ||
android:name="io.flutter.embedding.android.NormalTheme" | ||
android:resource="@style/NormalTheme"/> | ||
<!-- Displays an Android View that continues showing the launch screen | ||
Drawable until Flutter paints its first frame, then this splash | ||
screen fades out. A splash screen is useful to avoid any visual | ||
gap between the end of Android's launch screen and the painting of | ||
Flutter's first frame. --> | ||
<meta-data | ||
android:name="io.flutter.embedding.android.SplashScreenDrawable" | ||
android:resource="@drawable/launch_background" | ||
/> | ||
|
||
android:name="io.flutter.embedding.android.SplashScreenDrawable" | ||
android:resource="@drawable/launch_background"/> | ||
<!-- Deep linking --> | ||
<meta-data android:name="flutter_deeplinking_enabled" android:value="true" /> | ||
<meta-data | ||
android:name="flutter_deeplinking_enabled" | ||
android:value="true"/> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<category android:name="android.intent.category.BROWSABLE" /> | ||
<data android:scheme="https" /> | ||
<data android:scheme="thaliapp" /> | ||
<data android:host="thalia.nu" /> | ||
<data android:path="/pizzas/" /> | ||
<data android:path="/events/" /> | ||
<data android:path="/association/boards/" /> | ||
<data android:path="/association/committees/" /> | ||
<data android:path="/association/societies/" /> | ||
<data android:pathPattern="/association/boards/.*/" /> | ||
<data android:pathPattern="/association/committees/.*/" /> | ||
<data android:pathPattern="/association/societies/.*/" /> | ||
<data android:pathPattern="/events/.*/" /> | ||
<data android:pathPattern="/members/photos/.*/" /> | ||
<data android:pathPattern="/sales/order/.*/pay/" /> | ||
<action | ||
android:name="android.intent.action.VIEW"/> | ||
<category | ||
android:name="android.intent.category.DEFAULT"/> | ||
<category | ||
android:name="android.intent.category.BROWSABLE"/> | ||
<data | ||
android:scheme="https"/> | ||
<data | ||
android:scheme="thaliapp"/> | ||
<data | ||
android:host="thalia.nu"/> | ||
<data | ||
android:path="/pizzas/"/> | ||
<data | ||
android:path="/events/"/> | ||
<data | ||
android:path="/association/boards/"/> | ||
<data | ||
android:path="/association/committees/"/> | ||
<data | ||
android:path="/association/societies/"/> | ||
<data | ||
android:pathPattern="/association/boards/.*/"/> | ||
<data | ||
android:pathPattern="/association/committees/.*/"/> | ||
<data | ||
android:pathPattern="/association/societies/.*/"/> | ||
<data | ||
android:pathPattern="/events/.*/"/> | ||
<data | ||
android:pathPattern="/members/photos/.*/"/> | ||
<data | ||
android:pathPattern="/sales/order/.*/pay/"/> | ||
</intent-filter> | ||
|
||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
|
||
<!-- Push notifications icon --> | ||
<meta-data | ||
android:name="com.google.firebase.messaging.default_notification_icon" | ||
android:resource="@drawable/ic_notification" /> | ||
<meta-data android:name="com.google.firebase.messaging.default_notification_color" | ||
android:resource="@color/magenta" /> | ||
|
||
android:resource="@drawable/ic_notification"/> | ||
<meta-data | ||
android:name="com.google.firebase.messaging.default_notification_color" | ||
android:resource="@color/magenta"/> | ||
<!-- OAuth callback --> | ||
<activity | ||
android:name="com.linusu.flutter_web_auth_2.CallbackActivity" | ||
<activity | ||
android:name="com.linusu.flutter_web_auth_2.CallbackActivity" | ||
android:exported="true"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<category android:name="android.intent.category.BROWSABLE" /> | ||
<data android:scheme="nu.thalia" /> | ||
<action | ||
android:name="android.intent.action.VIEW"/> | ||
<category | ||
android:name="android.intent.category.DEFAULT"/> | ||
<category | ||
android:name="android.intent.category.BROWSABLE"/> | ||
<data | ||
android:scheme="nu.thalia"/> | ||
</intent-filter> | ||
</activity> | ||
|
||
<!-- Image Cropper --> | ||
<activity | ||
android:name="com.yalantis.ucrop.UCropActivity" | ||
android:screenOrientation="portrait" | ||
android:theme="@style/Theme.AppCompat.Light.NoActionBar"/> | ||
|
||
<!-- Don't delete the meta-data below. | ||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> | ||
<meta-data | ||
android:name="flutterEmbedding" | ||
android:value="2" /> | ||
android:value="2"/> | ||
</application> | ||
</manifest> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
<item> | ||
<bitmap android:gravity="fill" android:src="@drawable/background"/> | ||
</item> | ||
</layer-list> | ||
</layer-list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
<item> | ||
<bitmap android:gravity="fill" android:src="@drawable/background"/> | ||
</item> | ||
</layer-list> | ||
</layer-list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.