Hi all, Is there a way to add the kotlin pod to "d...
# multiplatform
t
Hi all, Is there a way to add the kotlin pod to "development pod" instead of the project podfile in ios. The steps I am doing right now are: 1. adding pod to the ios project's podfile
Copy code
pod 'xyzModule', :modular_headers => true, :path => '../kmm/xyzModule'
2. Then adding it in the development pod:
Copy code
s.dependency 'xyzModule'
When I try
import xyzModule
, I am getting the error
No such module 'xyzModule'