Skip to content

Commit

Permalink
Fix verifyerror when running on desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Nov 2, 2023
1 parent 85abc01 commit 33cd67d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/desktop/rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@

# compose
-keep class androidx.compose.ui.text.platform.Platform { *; }
-keep class androidx.compose.runtime.** { *; }
2 changes: 1 addition & 1 deletion app/desktop/src/commonMain/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import java.awt.Window as AWTWindow

private val LOG = KotlinLogging.logger { }

fun main(array: Array<String>) = start(array)
fun main(array: Array<String>) = start(arrayOf("tonbrett://login?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL211c2lrdXMuZ3V0aWt1cy5zY2hsYXUuYmkiLCJ1c2VySWQiOjQxNjkwMjM3OTU5ODc3NDI3MywicmVmcmVzaFRva2VuIjoiVTNtdXV4WE1WTW9uQkU4RGFQOW1jRkN4dUQzMkRlIiwiZXhwIjoxNjk5NDg2NDM4fQ.lLXjSeynjaHiCXbO5lJh6fWb9rKjBfOGii9mDT-yK40"))

fun startApplication(forAuth: Boolean = false) = application {
val sessionExpired = remember { mutableStateOf(false) }
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = "dev.schlaubi.tonbrett"
version = "1.16.3"
version = "1.16.4"

repositories {
mavenCentral()
Expand Down

0 comments on commit 33cd67d

Please sign in to comment.