Hello everyone:slightly_smiling_face: I'm an Andro...
# multiplatform
k
Hello everyone🙂 I'm an Android developer and don't know much about iOS. But I'm still trying to figure it out. I have a shared module and a resource module, I use cocoapods, and I'm trying to transfer dependencies transitively. But the Xcode project does not see these dependencies - "Cannot find 'ResourcesKt' in scope". What am I doing wrong? My shared module
_cocoapods_ *{*
summary = "Some description for the Shared Module"
homepage = "Link to the Shared Module homepage"
ios.deploymentTarget = ProjectSettings.IOS_DEPLOYMENT_TARGET
version = ProjectSettings.VERSION_NAME
podfile = _project_.file("../iosApp/Podfile")
framework *{*
baseName = "shared"
isStatic = false
export(project(":resource"))
transitiveExport = true
}
}
My Podfile
platform :ios, '14.0'
target 'iosApp' do
use_frameworks!
pod 'shared', :path => '../shared'
end