Skip to content

Commit a827a27

Browse files
authored
chore: Update dependencies (#84)
2 parents 616e63d + 2e63a17 commit a827a27

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

app/build.gradle.kts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,14 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
33
plugins {
44
alias(libs.plugins.aboutlibraries.android)
55
alias(libs.plugins.android.application)
6-
alias(libs.plugins.kotlin.android)
76
alias(libs.plugins.kotlin.compose)
87
alias(libs.plugins.devtools.ksp)
98
alias(libs.plugins.kotlin.serialization)
109
}
1110

1211
android {
1312
namespace = "co.adityarajput.notifilter"
14-
compileSdk {
15-
version = release(36)
16-
}
13+
compileSdk = 36
1714

1815
defaultConfig {
1916
applicationId = "co.adityarajput.notifilter"
@@ -55,19 +52,22 @@ android {
5552
sourceCompatibility = JavaVersion.VERSION_11
5653
targetCompatibility = JavaVersion.VERSION_11
5754
}
58-
kotlin {
59-
compilerOptions {
60-
jvmTarget.set(JvmTarget.JVM_11)
61-
}
62-
}
6355
buildFeatures {
6456
compose = true
57+
resValues = true
6558
}
66-
ksp {
67-
arg("room.schemaLocation", "$projectDir/schemas")
59+
}
60+
61+
kotlin {
62+
compilerOptions {
63+
jvmTarget.set(JvmTarget.JVM_11)
6864
}
6965
}
7066

67+
ksp {
68+
arg("room.schemaLocation", "$projectDir/schemas")
69+
}
70+
7171
dependencies {
7272
implementation(libs.androidx.core.ktx)
7373
implementation(libs.androidx.lifecycle.runtime.ktx)

app/src/main/java/co/adityarajput/notifilter/views/screens/LicensesScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ fun LicensesScreen(goBack: () -> Unit = {}) {
3131
.fillMaxSize()
3232
.padding(paddingValues),
3333
) {
34-
val libraries by produceLibraries(R.raw.aboutlibraries)
34+
val libraries by produceLibraries()
3535

3636
LibrariesContainer(
3737
libraries,

build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
33
alias(libs.plugins.android.application) apply false
4-
alias(libs.plugins.kotlin.android) apply false
54
alias(libs.plugins.kotlin.compose) apply false
65
alias(libs.plugins.aboutlibraries.android) apply false
76
}

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ kotlin.code.style=official
2121
# resources declared in the library itself and none from the library's dependencies,
2222
# thereby reducing the size of the R class for that library
2323
android.nonTransitiveRClass=true
24+
# Enable cache to improve build performance:
25+
org.gradle.configuration-cache=true

gradle/libs.versions.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
2-
aboutlibraries = "13.2.1"
3-
agp = "8.13.2"
2+
aboutlibraries = "14.0.0-b02"
3+
agp = "9.1.0"
44
kotlin = "2.3.10"
55
coreKtx = "1.18.0"
66
junit = "4.13.2"
@@ -9,7 +9,7 @@ espressoCore = "3.7.0"
99
kotlinxSerializationJson = "1.10.0"
1010
lifecycleRuntimeKtx = "2.10.0"
1111
activityCompose = "1.13.0"
12-
composeBom = "2026.02.00"
12+
composeBom = "2026.03.00"
1313
appcompat = "1.7.1"
1414
navigation = "2.9.7"
1515
room = "2.8.4"
@@ -52,6 +52,5 @@ jemoji = { group = "net.fellbaum", name = "jemoji", version.ref = "jemoji" }
5252
aboutlibraries-android = { id = "com.mikepenz.aboutlibraries.plugin.android", version.ref = "aboutlibraries" }
5353
android-application = { id = "com.android.application", version.ref = "agp" }
5454
devtools-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
55-
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
5655
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
5756
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=72f44c9f8ebcb1af43838f45ee5c4aa9c5444898b3468ab3f4af7b6076c5bc3f
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
3+
distributionSha256Sum=60ea723356d81263e8002fec0fcf9e2b0eee0c0850c7a3d7ab0a63f2ccc601f3
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)