File tree Expand file tree Collapse file tree 5 files changed +21
-21
lines changed
src/main/kotlin/com/whereismymotivation/ui Expand file tree Collapse file tree 5 files changed +21
-21
lines changed Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[versions ]
2- application = " 8.2.1 "
2+ application = " 8.3.2 "
33kotlin = " 1.9.22"
44hilt = " 2.50"
55ksp = " 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 "
1212constraintlayout = " 1.0.1"
13- activity = " 1.8.2 "
14- browser = " 1.7 .0"
13+ activity = " 1.9.0 "
14+ browser = " 1.8 .0"
1515charty = " 2.0.0-alpha01"
1616coroutines = " 1.7.3"
1717timber = " 5.0.1"
1818retrofit2 = " 2.9.0"
1919okhttp3 = " 4.11.0"
20- firebase = " 32.7.0 "
20+ firebase = " 33.1.1 "
2121work = " 2.9.0"
22- moshi = " 1.15.0 "
22+ moshi = " 1.15.1 "
2323room = " 2.6.1"
24- hiltKtx = " 1.1 .0"
24+ hiltKtx = " 1.2 .0"
2525coil = " 2.5.0"
2626lottie = " 6.3.0"
2727junit = " 4.13.2"
2828mockk = " 1.13.9"
2929coroutines-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 ]
3434android-application = { id = " com.android.application" , version.ref = " application" }
Original file line number Diff line number Diff line change 11# Tue Dec 12 17:24:00 IST 2023
22distributionBase =GRADLE_USER_HOME
33distributionPath =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
55zipStoreBase =GRADLE_USER_HOME
66zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments