Skip to content

Commit

Permalink
Sort 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
WhosNickDoglio committed Oct 13, 2024
1 parent 8c3bb27 commit 55b47a8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
14 changes: 7 additions & 7 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ android {
release {
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
"proguard-rules.pro",
)
}
}
Expand Down Expand Up @@ -119,12 +119,6 @@ android {
}

dependencies {
coreLibraryDesugaring(libs.desugar)

ksp(libs.kotlinInject.compiler)

lintChecks(libs.lints.compose)

implementation(platform(libs.compose.bom))
implementation(platform(libs.kotlin.bom))
implementation(libs.androidx.activity.compose)
Expand All @@ -142,4 +136,10 @@ dependencies {

testImplementation(libs.assertk)
testImplementation(libs.junit)

coreLibraryDesugaring(libs.desugar)

ksp(libs.kotlinInject.compiler)

lintChecks(libs.lints.compose)
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ktfmt = "0.50"
kover = "0.8.3"
glance = "1.1.0"
spotless = "6.25.0"
sort = "0.8"
sort = "0.9"
inject = "0.7.2"
sqldelight = "2.0.2"
ktor = "3.0.0"
Expand Down
5 changes: 3 additions & 2 deletions widget/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@ plugins {
android { namespace = "dev.whosnickdoglio.scores.widget" }

dependencies {
ksp(libs.kotlinInject.compiler)

api(libs.androidx.workmanager)

implementation(libs.glance.appwidget)
implementation(libs.immutableCollections)
implementation(libs.kotlinInject)
Expand All @@ -44,4 +43,6 @@ dependencies {
implementation(projects.widgetTheme)
implementation(projects.widgetUi)
implementation(projects.workmanagerAssisted)

ksp(libs.kotlinInject.compiler)
}
4 changes: 2 additions & 2 deletions workmanager-assisted/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ plugins {
android { namespace = "dev.whosnickdoglio.workmanager" }

dependencies {
ksp(libs.kotlinInject.compiler)

implementation(libs.androidx.workmanager)
implementation(libs.kotlinInject)

ksp(libs.kotlinInject.compiler)
}

0 comments on commit 55b47a8

Please sign in to comment.