Skip to content

Commit

Permalink
Update packages and build deps
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebQ42 committed Jan 3, 2025
1 parent a03f45c commit cc260e3
Show file tree
Hide file tree
Showing 7 changed files with 73 additions and 68 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ android {
}

kotlinOptions {
jvmTarget = '1.8'
jvmTarget = JavaVersion.VERSION_1_8
}

sourceSets {
Expand Down
5 changes: 5 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ subprojects {
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
tasks.withType(JavaCompile).configureEach {
javaCompiler = javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(8)
}
}
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
org.gradle.jvmargs=-Xmx1536M
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
android.enableJetifier=true
4 changes: 2 additions & 2 deletions android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ pluginManagement {

plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.7.0" apply false
id "com.android.application" version '8.7.3' apply false
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
id "com.google.gms.google-services" version "4.4.0" apply false
id "com.google.gms.google-services" version "4.4.2" apply false
}

include ":app"
2 changes: 1 addition & 1 deletion lib/ui/misc/edit_content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class EditContentState extends State<EditContent> with StatefulCard {
.buttonTheme
.colorScheme
?.onSurface
.withOpacity(.24),
.withValues(alpha: .24),
onPressed: () {
widget.contentKey.currentState?.setState(
() {
Expand Down
Loading

0 comments on commit cc260e3

Please sign in to comment.