Skip to content

Commit

Permalink
Version upgrades in some libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
bedirhansaricayir committed May 16, 2024
1 parent b274362 commit 1bca3f6
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 60 deletions.
9 changes: 7 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,20 @@ android {
freeCompilerArgs += freeCompilerArgList
}
}

}

dependencies {
api(project(":core:network"))

Kotlin.list.forEach(::api)
Compose.list.forEach(::api)
Di.list.forEach(::api)

with(Di) {
implementation(hiltAndroid)
implementation(hiltNavigationCompose)
ksp(hiltCompiler)
ksp(hiltAndroidCompiler)
}

coreLibraryDesugaring(ThirdParty.desugaring)
api(Androidx.splash)
Expand Down

This file was deleted.

2 changes: 2 additions & 0 deletions app/src/main/java/com/lifting/app/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ package com.lifting.app
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
import dagger.hilt.android.AndroidEntryPoint

@AndroidEntryPoint
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
installSplashScreen()
setContent {

}
Expand Down
17 changes: 0 additions & 17 deletions app/src/test/java/com/lifting/app/ExampleUnitTest.kt

This file was deleted.

2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
}
}
plugins {
id("com.google.devtools.ksp") version "1.9.0-1.0.13" apply false
id("com.google.devtools.ksp") version "1.9.22-1.0.17" apply false
id("org.jetbrains.kotlin.jvm") version "1.9.22" apply false
id("com.android.library") version "8.1.0" apply false
id("org.jetbrains.kotlin.android") version "1.9.22" apply false
Expand Down
30 changes: 15 additions & 15 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object Versions {

//Root Build Plugins
const val gradleVersion = "8.1.0"
const val gradleVersion = "8.4.0"
const val kotlinGradlePluginVersion = "1.9.0"
const val hiltAndroidPluginVersion = "2.48"

Expand All @@ -11,13 +11,13 @@ object Versions {


//Core
const val coreKtxVersion = "1.10.1"
const val coreKtxVersion = "1.13.1"
const val platformKotlinBomVersion = "1.8.0"
const val lifecycleRuntimeKtxVersion = "2.6.1"
const val activityComposeVersion = "1.7.2"
const val platformComposeBomVersion = "2022.10.00"
const val material3Version = "1.1.2"
const val foundationVersion = "1.4.3"
const val lifecycleRuntimeKtxVersion = "2.7.0"
const val activityComposeVersion = "1.9.0"
const val platformComposeBomVersion = "2024.05.00"
const val material3Version = "1.2.1"
const val foundationVersion = "1.7.0-alpha07"

//Test
const val junitVersion = "4.13.2"
Expand All @@ -27,12 +27,12 @@ object Versions {


//Viewmodel
const val lifecycleViewmodelComposeVersion = "2.6.1"
const val lifecycleViewmodelKtxVersion = "2.6.1"
const val lifecycleViewmodelComposeVersion = "2.8.0"
const val lifecycleViewmodelKtxVersion = "2.8.0"

//Coroutines
const val coroutinesCoreVersion = "1.6.4"
const val coroutinesAndroidVersion = "1.6.4"
const val coroutinesCoreVersion = "1.7.1"
const val coroutinesAndroidVersion = "1.7.1"

//Retrofit - OkHttp3
const val retrofitVersion = "2.9.0"
Expand All @@ -41,16 +41,16 @@ object Versions {
const val okhttpInterceptorVersion = "5.0.0-alpha.2"

//Navigation
const val composeNavigationVersion = "2.7.4"
const val composeNavigationVersion = "2.8.0-alpha08"

//Splash API
const val splashScreenVersion = "1.0.1"

//Dagger - Hilt
const val hiltAndroidVersion = "2.48"
const val hiltAndroidCompilerVersion = "2.48"
const val hiltNavigationComposeVersion = "1.1.0-alpha01"
const val hiltCompilerVersion = "1.0.0"
const val hiltNavigationComposeVersion = "1.2.0"
const val hiltCompilerVersion = "1.2.0"

//Datastore
const val datastoreVersion = "1.0.0"
Expand All @@ -77,7 +77,7 @@ object Versions {
const val chartVersion = "3.1.0"

//Room
const val roomVersion = "2.5.2"
const val roomVersion = "2.6.1"

//Calendar
const val calendarVersion = "2.4.0"
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 @@
#Sat Jun 10 02:04:20 TRT 2023
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.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 1bca3f6

Please sign in to comment.