File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
core/data/src/commonMain/kotlin/com/mifos/core/data/repositoryImp Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6868 android : name =" com.google.mlkit.vision.DEPENDENCIES"
6969 android : value =" barcode" />
7070
71- Doc <!-- Disable Firebase analytics by default. This setting is overwritten for the `prod` flavor -->
71+ <!-- Disable Firebase analytics by default. This setting is overwritten for the `prod` flavor -->
7272 <meta-data
7373 android : name =" firebase_analytics_collection_deactivated"
7474 android : value =" true" />
Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ class LoginRepositoryImp(
2222) : LoginRepository {
2323
2424 override suspend fun login (username : String , password : String ): PostAuthenticationResponse {
25- return dataManagerAuth.login(username, password)
25+ return dataManagerAuth.login(username.trim() , password.trim() )
2626 }
2727}
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ kotlinxCoroutines = "1.10.1"
116116kotlinxDatetime = " 0.7.1"
117117kotlinxImmutable = " 0.3.8"
118118kotlinxSerializationJson = " 1.7.3"
119- ksp = " 2.1.0 -1.0.29 "
119+ ksp = " 2.1.10 -1.0.30 "
120120
121121# Ktor & Ktorfit
122122ktorVersion = " 3.1.3"
You can’t perform that action at this time.
0 commit comments