I am new to kotlin/native, especially in the iOS a...
# kotlin-native
t
I am new to kotlin/native, especially in the iOS area of native development. I want to use the GRPC cocoapod dependency in my kotlin multiplatform project for my iOS target.
Copy code
pod("gRPC-ProtoRPC", version = "~> 1.48", moduleName = "ProtoRPC")
However, my Gradle Task fails with fatal error: module 'ProtoRPC' not found I have tried the steps suggested in https://kotlinlang.org/docs/native-cocoapods.html#possible-issues-and-solutions. However, there was no module.modulemap in build/cocoapods/synthetic/Pods/gRPC-ProtoRPC. I found one in build/cocoapods/synthetic/Pods/Target Support Files/gRPC-ProtoRPC but that one says: framework module ProtoRPC. What is the easiest way of getting access to the Objective-C implementation of GRPC in Kotlin Multiplatform?