Skip to content

Commit

Permalink
chore: update dependencies and set targetSdk and compileSdk to 34
Browse files Browse the repository at this point in the history
  • Loading branch information
cinit committed Aug 21, 2023
1 parent 9355dc1 commit 1dcd524
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build-logic/convention/src/main/kotlin/Version.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import java.util.Properties
object Version {
val java = JavaVersion.VERSION_11

const val compileSdkVersion = 33
const val compileSdkVersion = 34
val buildToolsVersion = findBuildToolsVersion()
const val minSdk = 24
const val targetSdk = 33
const val targetSdk = 34
const val versionName = "1.4.3"

private const val defaultNdkVersion = "25.1.8937393"
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ appcenter-analytics = { module = "com.microsoft.appcenter:appcenter-analytics",
appcenter-crashes = { module = "com.microsoft.appcenter:appcenter-crashes", version.ref = "appCenter" }
android-tools = { module = "com.android.tools.build:gradle", version.ref = "agp" }
androidx-annotation = { module = "androidx.annotation:annotation", version = "1.6.0" }
androidx-browser = { module = "androidx.browser:browser", version = "1.5.0" }
androidx-browser = { module = "androidx.browser:browser", version = "1.6.0" }
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version = "2.1.4" }
androidx-core-ktx = { module = "androidx.core:core-ktx", version = "1.10.1" }
eclipse-jgit = { module = "org.eclipse.jgit:org.eclipse.jgit", version = "6.6.0.202305301015-r" }
Expand All @@ -36,7 +36,7 @@ confetti = { module = "com.github.jinatonic.confetti:confetti", version = "1.1.2
weatherView = { module = "com.github.MatteoBattilana:WeatherView", version = "3.0.0"}
sealedEnum-runtime = { module = "com.github.livefront.sealed-enum:runtime", version.ref = "sealedEnum" }
sealedEnum-ksp = { module = "com.github.livefront.sealed-enum:ksp", version.ref = "sealedEnum" }
glide = { module = "com.github.bumptech.glide:glide", version = "4.15.1" }
glide = { module = "com.github.bumptech.glide:glide", version = "4.16.0" }
byte-buddy = { module = "net.bytebuddy:byte-buddy", version = "1.14.6" }
dalvik-dx = { module = "com.jakewharton.android.repackaged:dalvik-dx", version = "11.0.0_r3" }

Expand Down
2 changes: 1 addition & 1 deletion libs/xView/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ dependencies {
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.9.0")
implementation("androidx.recyclerview:recyclerview:1.3.1")
implementation("com.github.bumptech.glide:glide:4.15.1")
implementation("com.github.bumptech.glide:glide:4.16.0")
implementation("com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0")
}

0 comments on commit 1dcd524

Please sign in to comment.