Skip to content

Commit

Permalink
update dependencies (#42)
Browse files Browse the repository at this point in the history
* update dependencies..................Done

* update dependencies

* removed all modifications i made in the gradle.properties file

* removed the local.properties file
  • Loading branch information
geekPastor authored Nov 25, 2024
1 parent 11a874d commit c8595cd
Show file tree
Hide file tree
Showing 20 changed files with 37 additions and 45 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
/captures
.externalNativeBuild
.cxx
local.properties
key.properties
key.properties
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ keystoreProperties.load(keystorePropertiesFile.inputStream())

android {
namespace = "com.yveskalume.eventcademy"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.yveskalume.eventcademy"
minSdk = 24
targetSdk = 34
targetSdk = 35
versionCode = 12
versionName = "1.7"

Expand Down
4 changes: 2 additions & 2 deletions benchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.benchmark"
compileSdk = 34
compileSdk = 35

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -19,7 +19,7 @@ android {

defaultConfig {
minSdk = 24
targetSdk = 34
targetSdk = 35

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion core/data-firebase/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.core.data.firebase"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion core/data-preferences/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.core.data.preferences"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion core/designsystem/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.core.designsystem"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package com.yveskalume.eventcademy.core.designsystem.components

import androidx.compose.animation.animateColorAsState
import androidx.compose.foundation.gestures.detectTapGestures
import androidx.compose.material.ripple.LocalRippleTheme
import androidx.compose.material3.LocalContentColor
import androidx.compose.material3.LocalTextStyle
import androidx.compose.material3.Text
Expand Down Expand Up @@ -146,7 +145,7 @@ object LinkedTextDefaults {
backgroundColor: Color = Color.Unspecified,
disabledBackgroundColor: Color = backgroundColor,
pressedBackgroundColor: Color = textColor.copy(
alpha = LocalRippleTheme.current.rippleAlpha().pressedAlpha
alpha = 0.2f
)
): LinkColors = DefaultLinkColors(
textColor = textColor,
Expand Down
2 changes: 1 addition & 1 deletion core/domain/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.core.domain"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion core/testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.core.testing"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion core/ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.core.ui"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion core/util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.core.util"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion feature/auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.feature.auth"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion feature/bookmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.feature.bookmark"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion feature/createevent/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.feature.createevent"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion feature/eventdetail/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.feature.eventdetail"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion feature/home/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.feature.home"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion feature/profile/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.feature.profile"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
2 changes: 1 addition & 1 deletion feature/setting/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

android {
namespace = "com.yveskalume.eventcademy.feature.setting"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 24
Expand Down
36 changes: 15 additions & 21 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,30 @@
[versions]
agp = "8.1.4"
agp = "8.7.2"
app-update = "2.1.0"
core-splashscreen = "1.0.1"
datastore-preferences = "1.1.1"
hilt-compiler = "1.2.0"
hilt-work = "1.2.0"
kotlinx-coroutines-android = "1.8.1"
kotlinx-coroutines-android = "1.9.0"
kotlinx-serialization-json = "1.6.3"
lottie-compose = "6.1.0"
material = "1.4.3"
kotlin = "2.0.0"
core-ktx = "1.13.1"
core-ktx = "1.15.0"
ksp = "2.0.0-1.0.21"
junit = "4.13.2"
androidx-test-ext-junit = "1.2.1"
espresso-core = "3.6.1"
lifecycle-runtime-ktx = "2.8.2"
activity-compose = "1.9.0"
compose-bom = "2024.06.00"
orbit-compose = "0.31.0"
compose-navigation = "2.7.7"
androidx-test-ext-junit = "1.1.5"
espresso-core = "3.5.1"
lifecycle-runtime-ktx = "2.8.7"
activity-compose = "1.9.3"
compose-bom = "2024.11.00"
compose-navigation = "2.8.4"
hilt = "2.49"
work-runtime-ktx = "2.9.0"
work-runtime-ktx = "2.10.0"
appcompat = "1.7.0"
com-google-android-material-material = "1.12.0"
androidx-benchmark = "1.2.4"
runner = "1.6.1"
benchmark-junit4 = "1.2.4"
androidx-benchmark = "1.3.3"
uiautomator = "2.3.0"
benchmark-macro-junit4 = "1.2.4"
benchmark-macro-junit4 = "1.3.3"

[libraries]
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "core-splashscreen" }
Expand All @@ -50,8 +46,8 @@ lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-ru
activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activity-compose" }
compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
lottie-compose = { module = "com.airbnb.android:lottie-compose", version.ref = "lottie-compose" }
material-icon-exented = "androidx.compose.material:material-icons-extended:1.6.8"
ui = { group = "androidx.compose.ui", name = "ui", version = "1.7.0-beta04" }
material-icon-exented = "androidx.compose.material:material-icons-extended:1.7.5"
ui = { group = "androidx.compose.ui", name = "ui", version = "1.7.5" }
ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
Expand All @@ -65,7 +61,7 @@ hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref
hilt-compiler = { group = "com.google.dagger", name = "hilt-compiler", version.ref = "hilt" }
hilt-navigation = "androidx.hilt:hilt-navigation-compose:1.2.0"

firebase-boom = { group = "com.google.firebase", name = "firebase-bom", version = "33.1.1" }
firebase-boom = { group = "com.google.firebase", name = "firebase-bom", version = "33.6.0" }
firebase-firestore = { group = "com.google.firebase", name = "firebase-firestore-ktx" }
firebase-auth = { group = "com.google.firebase", name = "firebase-auth-ktx" }
firebase-storage = { group = "com.google.firebase", name = "firebase-storage-ktx" }
Expand All @@ -79,8 +75,6 @@ google-playservices-auth = { group = "com.google.android.gms", name = "play-serv
coil-compose = { group = "io.coil-kt", name = "coil-compose", version = "2.6.0" }
appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
material = { group = "com.google.android.material", name = "material", version.ref = "com-google-android-material-material" }
runner = { group = "androidx.test", name = "runner", version.ref = "runner" }
benchmark-junit4 = { group = "androidx.benchmark", name = "benchmark-junit4", version.ref = "benchmark-junit4" }

konfetti-compose = "nl.dionsegijn:konfetti-compose:2.0.3"
uiautomator = { group = "androidx.test.uiautomator", name = "uiautomator", version.ref = "uiautomator" }
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Jul 17 13:59:00 CAT 2023
#Sat Nov 23 14:22:33 CAT 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit c8595cd

Please sign in to comment.