Skip to content

Commit

Permalink
Merge pull request #32 from piashcse/update-libraries
Browse files Browse the repository at this point in the history
Update agp 8.7.3 to 8.8.0
  • Loading branch information
piashcse authored Jan 17, 2025
2 parents d256c56 + aef6a01 commit def0953
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package com.piashcse.hilt_mvvm_compose_movie.ui.component

import android.annotation.SuppressLint
import android.app.Activity
import androidx.activity.compose.BackHandler
import androidx.activity.compose.LocalActivity
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
Expand Down Expand Up @@ -35,7 +37,7 @@ fun Movies(
selectedName: Genre?,
onClickGenre: (Genre?) -> Unit,
) {
val activity = LocalContext.current as? Activity
val activity = LocalActivity.current
val progressBar = remember { mutableStateOf(false) }
val openDialog = remember { mutableStateOf(false) }

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package com.piashcse.hilt_mvvm_compose_movie.ui.component

import android.annotation.SuppressLint
import android.app.Activity
import androidx.activity.compose.BackHandler
import androidx.activity.compose.LocalActivity
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.padding
Expand Down Expand Up @@ -32,7 +34,7 @@ fun TvSeries(
selectedName: Genre?,
onclick: (Genre?) -> Unit,
) {
val activity = (LocalContext.current as? Activity)
val activity = LocalActivity.current
val progressBar = remember { mutableStateOf(false) }
val openDialog = remember { mutableStateOf(false) }

Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.7.3"
agp = "8.8.0"
kotlin = "2.1.0"
core-ktx = "1.15.0"
junit = "4.13.2"
Expand All @@ -8,22 +8,22 @@ espresso-core = "3.6.1"
splashscreen = "1.0.1"
constraint-layout-compose = "1.1.0"
lifecycle-runtime-ktx = "2.8.7"
activity-compose = "1.9.3"
activity-compose = "1.10.0"
material = "1.12.0"
material-icons-extended = "1.7.6"
multidex = "2.0.1"
retrofit = "2.11.0"
gson = "2.11.0"
logging-interceptor = "5.0.0-alpha.14"
logging-interceptor = "4.12.0"
paging-compose = "3.3.5"
landscapist = "2.4.6"
timber = "5.0.1"
navigation-compose = "2.8.5"
hilt-navigation-compose = "1.2.0"
navigation-runtime-ktx = "2.8.5"
hilt = "2.52"
hilt = "2.55"
ksp = "2.1.0-1.0.29"
compose-bom = "2024.12.01"
compose-bom = "2025.01.00"
compose = "1.7.6"
room = "2.6.1"

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Sep 06 00:16:32 BDT 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit def0953

Please sign in to comment.