Skip to content

Commit

Permalink
upgrade libs
Browse files Browse the repository at this point in the history
  • Loading branch information
janishar committed Jul 4, 2024
1 parent 2d7cda4 commit 7115b68
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
minSdk = 24
targetSdk = 34
versionCode = 1
versionName = "1.0"
versionName = "1.0.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class MainActivity : ComponentActivity() {
handleIntent(intent)
}

override fun onNewIntent(intent: Intent?) {
override fun onNewIntent(intent: Intent) {
super.onNewIntent(intent)
handleIntent(intent)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ object Destination {

abstract class Screen(baseRoute: String) {
companion object {
const val baseDeeplinkUrl = "app://wimm"
const val BASE_DEEPLINK_URL = "app://wimm"
}

open val route = baseRoute
open val deeplink = "${baseDeeplinkUrl}/$baseRoute"
open val deeplink = "${BASE_DEEPLINK_URL}/$baseRoute"
}

abstract class DynamicScreen(
Expand All @@ -39,11 +39,11 @@ object Destination {
val navArguments = listOf(navArgument(routeArgName) { type = NavType.StringType })

override val route = "$baseRoute/{$routeArgName}"
override val deeplink = "${baseDeeplinkUrl}/$baseRoute/{$routeArgName}"
override val deeplink = "${BASE_DEEPLINK_URL}/$baseRoute/{$routeArgName}"

fun dynamicRoute(param: String) = "$baseRoute/$param"

fun dynamicDeeplink(param: String) = "$baseDeeplinkUrl/$baseRoute/${param}"
fun dynamicDeeplink(param: String) = "$BASE_DEEPLINK_URL/$baseRoute/${param}"
}
}

28 changes: 14 additions & 14 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
[versions]
application = "8.2.1"
application = "8.3.2"
kotlin = "1.9.22"
hilt = "2.50"
ksp = "1.9.22-1.0.17"
google-services = "4.4.0"
crashlytics = "2.9.9"
android-core = "1.12.0"
lifecycle = "2.7.0"
compose = "2023.03.00"
navigation = "2.7.6"
google-services = "4.4.2"
crashlytics = "3.0.2"
android-core = "1.13.1"
lifecycle = "2.8.3"
compose = "2024.06.00"
navigation = "2.7.7"
constraintlayout = "1.0.1"
activity = "1.8.2"
browser = "1.7.0"
activity = "1.9.0"
browser = "1.8.0"
charty = "2.0.0-alpha01"
coroutines = "1.7.3"
timber = "5.0.1"
retrofit2 = "2.9.0"
okhttp3 = "4.11.0"
firebase = "32.7.0"
firebase = "33.1.1"
work = "2.9.0"
moshi = "1.15.0"
moshi = "1.15.1"
room = "2.6.1"
hiltKtx = "1.1.0"
hiltKtx = "1.2.0"
coil = "2.5.0"
lottie = "6.3.0"
junit = "4.13.2"
mockk = "1.13.9"
coroutines-test = "1.7.3"
junit-ext = "1.1.5"
espresso = "3.5.1"
junit-ext = "1.2.1"
espresso = "3.6.1"

[plugins]
android-application = { id = "com.android.application", version.ref = "application" }
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 @@
#Tue Dec 12 17:24:00 IST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 7115b68

Please sign in to comment.