Skip to content

Commit 7115b68

Browse files
committed
upgrade libs
1 parent 2d7cda4 commit 7115b68

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ android {
1717
minSdk = 24
1818
targetSdk = 34
1919
versionCode = 1
20-
versionName = "1.0"
20+
versionName = "1.0.0"
2121

2222
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2323
vectorDrawables {

app/src/main/kotlin/com/whereismymotivation/ui/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class MainActivity : ComponentActivity() {
4040
handleIntent(intent)
4141
}
4242

43-
override fun onNewIntent(intent: Intent?) {
43+
override fun onNewIntent(intent: Intent) {
4444
super.onNewIntent(intent)
4545
handleIntent(intent)
4646
}

app/src/main/kotlin/com/whereismymotivation/ui/navigation/Destination.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ object Destination {
2424

2525
abstract class Screen(baseRoute: String) {
2626
companion object {
27-
const val baseDeeplinkUrl = "app://wimm"
27+
const val BASE_DEEPLINK_URL = "app://wimm"
2828
}
2929

3030
open val route = baseRoute
31-
open val deeplink = "${baseDeeplinkUrl}/$baseRoute"
31+
open val deeplink = "${BASE_DEEPLINK_URL}/$baseRoute"
3232
}
3333

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

4141
override val route = "$baseRoute/{$routeArgName}"
42-
override val deeplink = "${baseDeeplinkUrl}/$baseRoute/{$routeArgName}"
42+
override val deeplink = "${BASE_DEEPLINK_URL}/$baseRoute/{$routeArgName}"
4343

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

46-
fun dynamicDeeplink(param: String) = "$baseDeeplinkUrl/$baseRoute/${param}"
46+
fun dynamicDeeplink(param: String) = "$BASE_DEEPLINK_URL/$baseRoute/${param}"
4747
}
4848
}
4949

gradle/libs.versions.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
[versions]
2-
application = "8.2.1"
2+
application = "8.3.2"
33
kotlin = "1.9.22"
44
hilt = "2.50"
55
ksp = "1.9.22-1.0.17"
6-
google-services = "4.4.0"
7-
crashlytics = "2.9.9"
8-
android-core = "1.12.0"
9-
lifecycle = "2.7.0"
10-
compose = "2023.03.00"
11-
navigation = "2.7.6"
6+
google-services = "4.4.2"
7+
crashlytics = "3.0.2"
8+
android-core = "1.13.1"
9+
lifecycle = "2.8.3"
10+
compose = "2024.06.00"
11+
navigation = "2.7.7"
1212
constraintlayout = "1.0.1"
13-
activity = "1.8.2"
14-
browser = "1.7.0"
13+
activity = "1.9.0"
14+
browser = "1.8.0"
1515
charty = "2.0.0-alpha01"
1616
coroutines = "1.7.3"
1717
timber = "5.0.1"
1818
retrofit2 = "2.9.0"
1919
okhttp3 = "4.11.0"
20-
firebase = "32.7.0"
20+
firebase = "33.1.1"
2121
work = "2.9.0"
22-
moshi = "1.15.0"
22+
moshi = "1.15.1"
2323
room = "2.6.1"
24-
hiltKtx = "1.1.0"
24+
hiltKtx = "1.2.0"
2525
coil = "2.5.0"
2626
lottie = "6.3.0"
2727
junit = "4.13.2"
2828
mockk = "1.13.9"
2929
coroutines-test = "1.7.3"
30-
junit-ext = "1.1.5"
31-
espresso = "3.5.1"
30+
junit-ext = "1.2.1"
31+
espresso = "3.6.1"
3232

3333
[plugins]
3434
android-application = { id = "com.android.application", version.ref = "application" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Dec 12 17:24:00 IST 2023
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)