developer-- / KMM-Jwt-Parser

JWT token parser library
Apache License 2.0
15 stars 3 forks source link
android cinterop ios jwt-token kmm kmp kotlin-multiplatform-mobile swift

KMM-Jwt-Parser

Kotlin multiplatform Library used to parse JWT token and return it as a JsonObject

For iOS target jwt token parsing is done in Swift side and then it is bundled using cinterop in order to call swift code from Kotlin

Sample usage:

val parser = JwtParser()
val jsonObject = parser.parse(YOUR_JWT_TOKEN)

Gradle

sourceSets {
    val commonMain by getting {
        dependencies {
           implementation("io.github.developer--:JwtParser:1.0.0")
        }
    }
}