我正在为 iOS 和 Android 开发一个 Kotlin/Native 库。
运行时,我得到了带有 Obj-C 标头./gradlew assemble
的 release/debug 。.framework
我可以.framework
很好地使用这些。但在 XCode 上使用代码时,我还想继续编写类和函数的文档。
如果我使用 KDoc 并记录我的代码:
/**
* This is a comment about the class I developed.
* [BaseService] is a class.
*/
class BaseService {
/**
* Comments about this val
*/
val greeting = "Hello"
/**
* This function greets the user
*/
fun greetUser(){
println(greeting)
}
}
将它带到我的 iOS 项目时,所有这些都丢失了。因为.framework
s 不携带 KDocs。
组装文件时,有什么方法可以将文档转移到 Obj-C 标头或其他辅助文件中.framework
?也许我缺少一些 Gradle 配置?