Skip to content

Commit

Permalink
Bump AGP & Dependencies to latest stable release
Browse files Browse the repository at this point in the history
Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
  • Loading branch information
theimpulson committed Apr 13, 2024
1 parent 9bcc28c commit 6268c7c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.9"
kotlinCompilerExtensionVersion = "1.5.11"
}
packaging {
resources {
Expand All @@ -95,7 +95,7 @@ dependencies {

implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.activity:activity-compose:1.8.2")
implementation(platform("androidx.compose:compose-bom:2024.03.00"))
implementation(platform("androidx.compose:compose-bom:2024.04.00"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-util")
implementation("androidx.compose.ui:ui-graphics")
Expand All @@ -104,7 +104,7 @@ dependencies {
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation(platform("androidx.compose:compose-bom:2024.03.00"))
androidTestImplementation(platform("androidx.compose:compose-bom:2024.04.00"))
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
debugImplementation("androidx.compose.ui:ui-tooling")
debugImplementation("androidx.compose.ui:ui-test-manifest")
Expand Down Expand Up @@ -134,17 +134,17 @@ dependencies {
implementation("io.coil-kt:coil-gif:$coilVersion")

// RSS-Parser
implementation("com.prof18.rssparser:rssparser:6.0.6")
implementation("com.prof18.rssparser:rssparser:6.0.7")

// Browser (Custom Tab)
implementation("androidx.browser:browser:1.8.0")

// Material
implementation("androidx.compose.material:material:1.6.4")
implementation("androidx.compose.material:material:1.6.5")
implementation("com.google.android.material:material:1.11.0")

// Hilt
val hiltVersion = "2.51"
val hiltVersion = "2.51.1"
ksp("com.google.dagger:hilt-android-compiler:$hiltVersion")
implementation("com.google.dagger:hilt-android:$hiltVersion")

Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.3.0" apply false
id("org.jetbrains.kotlin.android") version "1.9.22" apply false
id("com.google.devtools.ksp") version "1.9.22-1.0.17" apply false
id("com.android.application") version "8.3.2" apply false
id("org.jetbrains.kotlin.android") version "1.9.23" apply false
id("com.google.devtools.ksp") version "1.9.23-1.0.20" apply false
id("org.jlleitschuh.gradle.ktlint") version "12.0.3" apply false
id("com.google.dagger.hilt.android") version "2.51" apply false
id("com.google.dagger.hilt.android") version "2.51.1" apply false
}

0 comments on commit 6268c7c

Please sign in to comment.