Skip to content

Commit 408e387

Browse files
committed
Set Target SDK on Android, Bump Android Dependencies
1 parent bd04a22 commit 408e387

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

android/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ key.properties
1414
**/*.jks
1515

1616
Gemfile.lock
17+
build/

android/app/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ if (flutterVersionName == null) {
2626
}
2727

2828
android {
29-
compileSdkVersion flutter.compileSdkVersion
30-
ndkVersion flutter.ndkVersion
31-
3229
compileOptions {
3330
sourceCompatibility JavaVersion.VERSION_1_8
3431
targetCompatibility JavaVersion.VERSION_1_8
@@ -45,7 +42,8 @@ android {
4542
defaultConfig {
4643
applicationId "de.tum.in.tumcampus"
4744
minSdkVersion 29
48-
targetSdkVersion flutter.targetSdkVersion
45+
compileSdkVersion 35
46+
targetSdkVersion 35
4947
ndkVersion "27.0.12077973"
5048
versionCode flutterVersionCode.toInteger()
5149
versionName flutterVersionName
@@ -90,7 +88,7 @@ flutter {
9088

9189
dependencies {
9290
implementation 'com.android.support:multidex'
93-
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3'
91+
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0'
9492
}
9593

9694
apply plugin: 'com.google.firebase.crashlytics'

android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip

android/settings.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ pluginManagement {
1818

1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21-
id "com.android.application" version '8.10.0' apply false
22-
id "org.jetbrains.kotlin.android" version "1.9.20" apply false
23-
id "org.jetbrains.kotlin.plugin.serialization" version "2.0.21" apply false
24-
id "com.google.gms.google-services" version "4.4.2" apply false
25-
id "com.google.firebase.crashlytics" version "3.0.3" apply false
21+
id "com.android.application" version '8.11.0' apply false
22+
id "org.jetbrains.kotlin.android" version "2.2.0" apply false
23+
id "org.jetbrains.kotlin.plugin.serialization" version "2.2.0" apply false
24+
id "com.google.gms.google-services" version "4.4.3" apply false
25+
id "com.google.firebase.crashlytics" version "3.0.4" apply false
2626
}
2727

2828
include ":app"

ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
2930
shouldUseLaunchSchemeArgsEnv = "YES">
3031
<MacroExpansion>
3132
<BuildableReference
@@ -43,6 +44,7 @@
4344
buildConfiguration = "Debug"
4445
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4546
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
47+
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
4648
launchStyle = "0"
4749
useCustomWorkingDirectory = "NO"
4850
ignoresPersistentStateOnLaunch = "NO"

0 commit comments

Comments
 (0)