Skip to content

Commit

Permalink
Merge pull request #45 from skydoves/compose/1.7.5
Browse files Browse the repository at this point in the history
Bump Compose to 1.7.5
skydoves authored Nov 8, 2024
2 parents 2ef5a96 + d49a64b commit 5fd27ee
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/com/skydoves/cloudy/Configuration.kt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.skydoves.cloudy

object Configuration {
const val compileSdk = 34
const val targetSdk = 34
const val compileSdk = 35
const val targetSdk = 35
const val minSdk = 21
const val majorVersion = 0
const val minorVersion = 2
Original file line number Diff line number Diff line change
@@ -282,7 +282,7 @@ internal fun validateBitmap(
}

internal fun createCompatibleBitmap(inputBitmap: Bitmap) =
Bitmap.createBitmap(inputBitmap.width, inputBitmap.height, inputBitmap.config)
Bitmap.createBitmap(inputBitmap.width, inputBitmap.height, inputBitmap.config!!)

internal fun validateRestriction(
tag: String,
22 changes: 11 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[versions]
agp = "8.5.2"
kotlin = "2.0.20"
agp = "8.7.2"
kotlin = "2.0.21"
dokka = "1.9.20"
javaRelease = "11"
jvmTarget = "11"
material = "1.12.0"
nexusPlugin = "0.29.0"
nexusPlugin = "0.30.0"
binaryCompatibility = "0.16.3"
androidxActivity = "1.9.2"
androidxCompose = "1.7.1"
androidxComposeConstraintLayout = "1.0.1"
androidxCore = "1.13.1"
androidxActivity = "1.9.3"
androidxCompose = "1.7.5"
androidxComposeConstraintLayout = "1.1.0"
androidxCore = "1.15.0"
androidxTest = "1.6.2"
androidxJunit = "1.1.3"
androidxMacroBenchmark = "1.3.0"
androidxProfileinstaller = "1.3.1"
androidxJunit = "1.2.1"
androidxMacroBenchmark = "1.3.3"
androidxProfileinstaller = "1.4.1"
androidxUiAutomator = "2.3.0"
landscapist = "2.3.6"
landscapist = "2.4.2"
spotless = "6.7.0"

[plugins]

0 comments on commit 5fd27ee

Please sign in to comment.