Skip to content

Commit

Permalink
v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cdhiraj40 committed Dec 28, 2023
2 parents 0a5c4ef + 4d746eb commit bd753dc
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions solwave/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ afterEvaluate {

groupId = "com.github.Saganize"
artifactId = "Solwave-kt"
version = "0.0.1"
version = "0.0.2"
}
}
}
}
}
2 changes: 1 addition & 1 deletion solwave/src/main/java/com/saganize/solwave/Solwave.kt
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ class Solwave(
companion object {
const val SIGNING_MESSAGE_MAX_LENGTH = 300
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -146,4 +146,4 @@ class SolwaveActivity : ComponentActivity() {
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ sealed class SolwaveEvents {
val message: String,
val openDeepLink: () -> Unit = {},
) : SolwaveEvents()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ data class SolwaveState(
companion object {
const val maxSignMessageLength = 200
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class SolwaveViewModel(
_state.update {
copy(
url = it.url + "?access-token=" +
it.accessToken + "&api-key=" + apiKey,
it.accessToken + "&api-key=" + apiKey,
)
}
}
Expand Down Expand Up @@ -297,7 +297,7 @@ class SolwaveViewModel(
_state.update {
copy(
url = it.url + "?access-token=" + it.accessToken +
"&api-key=" + apiKey + "&email=" + email,
"&api-key=" + apiKey + "&email=" + email,
)
}
}
Expand Down Expand Up @@ -348,7 +348,7 @@ class SolwaveViewModel(
_state.update {
copy(
url = it.url + "?access-token=" + it.authToken +
"&api-key=" + apiKey,
"&api-key=" + apiKey,
)
}
}
Expand Down Expand Up @@ -391,7 +391,7 @@ class SolwaveViewModel(
// )
copy(
url = "http://192.168.29.224:5173/${it.idempotencyId}/transact" + "?access-token=" + it.authToken +
"&api-key=" + apiKey,
"&api-key=" + apiKey,
)
}
}
Expand Down Expand Up @@ -843,4 +843,4 @@ class SolwaveViewModel(

super.onCleared()
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,4 @@ fun getWebViewClosingEvent(ordinal: Long): WebViewClosingEvents {
7L -> WebViewClosingEvents.SigningMessageSuccess
else -> WebViewClosingEvents.ServerError
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -324,4 +324,4 @@ fun WebViewScreen(viewModel: SolwaveViewModel? = null) {
}
}
}
}
}

0 comments on commit bd753dc

Please sign in to comment.