Skip to content

Commit 88ec478

Browse files
committed
Merge remote-tracking branch 'origin/main' into migrate-to-3.38
2 parents da0e74a + 9dc0d9f commit 88ec478

File tree

55 files changed

+436
-2331
lines changed

Some content is hidden

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

55 files changed

+436
-2331
lines changed

.github/workflows/deploy_beta.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
- name: Install Bundle
2121
run: cd ./${{ matrix.platform }} && bundle install
2222

23-
- name: Setup Flutter
24-
uses: subosito/flutter-action@v2
25-
with:
26-
channel: stable
27-
2823
- if: matrix.platform == 'android'
2924
uses: actions/setup-java@v3
3025
with:
3126
distribution: 'corretto'
32-
java-version: '17'
27+
java-version: '21'
28+
29+
- name: Setup Flutter
30+
uses: subosito/flutter-action@v2
31+
with:
32+
channel: stable
3333

3434
- name: Install Flutter Packages
3535
run: |

.github/workflows/lint_test_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/setup-java@v3
3838
with:
3939
distribution: 'corretto'
40-
java-version: '17'
40+
java-version: '21'
4141

4242
- name: Build iOS
4343
run: flutter build ipa --no-codesign

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ ios/Runner.app.dSYM.zip
5050
ios/Runner.ipa
5151
ios/fastlane/report.xml
5252
ios/fastlane/README.md
53+
54+
#Android Studio Miscellaneous
55+
bugreport-*.zip

android/app/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ plugins {
1313
android {
1414
namespace = "de.tum.in.tumcampus"
1515
compileSdk = 36
16-
ndkVersion = "27.0.12077973"
16+
ndkVersion = "28.1.13356709"
1717

1818
compileOptions {
19-
sourceCompatibility = JavaVersion.VERSION_1_8
20-
targetCompatibility = JavaVersion.VERSION_1_8
19+
sourceCompatibility = JavaVersion.VERSION_21
20+
targetCompatibility = JavaVersion.VERSION_21
2121
}
2222

2323
kotlin {
2424
compilerOptions {
25-
jvmTarget.set(JvmTarget.JVM_1_8)
25+
jvmTarget.set(JvmTarget.JVM_21)
2626
}
2727
}
2828

assets/images/map/locate.webp

1.71 KB
Loading

assets/images/map/pin_blue.webp

706 Bytes
Loading

assets/images/map/pin_red.webp

1.19 KB
Loading

ios/Podfile.lock

Lines changed: 0 additions & 291 deletions
This file was deleted.

ios/Runner/AppDelegate.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
import UIKit
2-
import Flutter
3-
import GoogleMaps
2+
import Flutter
43

54
@main
65
@objc class AppDelegate: FlutterAppDelegate {
76
override func application(
87
_ application: UIApplication,
98
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
109
) -> Bool {
11-
GMSServices.provideAPIKey("AIzaSyAxUbnUMsXWVzeptXiLuNDMGpGEVFHLT4Y")
1210
GeneratedPluginRegistrant.register(with: self)
1311
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
1412
}

0 commit comments

Comments
 (0)