15

是否有任何 kotlin-multiplatform 常用函数来获取 UUID/GUID?

 // ideally something like this
 val newUUID = UUID() // "1598044e-5259-11e9-8647-d663bd873d93"
 println("newUUID = $newUUID")

我不希望使用 expect-actual 制作单独的 Android 和 iOS 版本。

4

1 回答 1

6

那一个可能工作 https://github.com/benasher44/uuid

该项目的源代码使用 Kotlin Multiplatform 项目来实现 UUID 库。有关更多详细信息,请参阅https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html

于 2019-03-29T22:11:54.853 回答