Skip to content

Commit

Permalink
Update the Android Gradle plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
YtvwlD committed Jan 13, 2024
1 parent 2b90114 commit 086527b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion meteroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath 'com.android.tools.build:gradle:8.2.1'
classpath 'gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.7.0'
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:8.9.4"
}
Expand All @@ -53,6 +53,16 @@ dependencies {
implementation 'com.squareup.picasso:picasso:2.8'
implementation 'com.google.android.material:material:1.4.0'
implementation 'com.mikepenz:aboutlibraries:8.9.4'
// Fix old Kotlin dependencies
// https://stackoverflow.com/a/75298544/2192464
constraints {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0") {
because("kotlin-stdlib-jdk7 is now a part of kotlin-stdlib")
}
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") {
because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib")
}
}
}

//see https://stackoverflow.com/a/22183825/2192464
Expand Down

0 comments on commit 086527b

Please sign in to comment.