We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in file: com.halilibo.richtext.ui.util.UUID.kt You have it set up as an expect/actual, which means that you need to implement it for each platform.
If you replace the platform specific code with the pure kotlin: Uuid.random().toString() when you dont need to implement it for all of them.
package com.halilibo.richtext.ui.util import kotlin.uuid.ExperimentalUuidApi import kotlin.uuid.Uuid @OptIn(ExperimentalUuidApi::class) internal fun randomUUID(): String = Uuid.random().toString()
The text was updated successfully, but these errors were encountered:
FYI I am porting for my multiplatform project now, because its not behaving as is.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
in file: com.halilibo.richtext.ui.util.UUID.kt
You have it set up as an expect/actual, which means that you need to implement it for each platform.
If you replace the platform specific code with the pure kotlin: Uuid.random().toString() when you dont need to implement it for all of them.
The text was updated successfully, but these errors were encountered: