All Downloads are FREE. Search and download functionalities are using the official Maven repository.

androidMain.tech.skot.core.uriUtils.kt Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package tech.skot.core

import android.net.Uri

fun Uri.toSKUri(): SKUri = SKUri(
    scheme = scheme,
    host = host,
    pathSegments = pathSegments,
    parameters = queryParameterNames.map {
        it to getQueryParameters(it)
    }.toMap()
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy