r
02/25/2022, 10:49 PMcocoapods {
framework {
baseName = "MyAppSharedLib"
//Dynamic framework support
isStatic = false
}
summary = "Multiplatform shared functionality"
homepage = "<https://myapp.com>"
podfile = project.file("../../app/MyApp/Podfile")
ios.deploymentTarget = "13.5"
osx.deploymentTarget = "10.15"
watchos.deploymentTarget = "6.2"
// Maps custom Xcode configuration to NativeBuildType
xcodeConfigurationToNativeBuildType["CUSTOM_DEBUG"] = NativeBuildType.DEBUG
xcodeConfigurationToNativeBuildType["CUSTOM_RELEASE"] = NativeBuildType.RELEASE
}
I'm using a Macbook Pro MX. The project seems to build correctly (I can see a build
folder with generated code for different platforms) but when I do a podInstall
the installed pod just contains a skeleton of the library with an empty placeholder.h
file in it. My current targets are android()
, jvm()
, and ios()
. I tried with iosSimulatorArm64()
as well with no luck. Any ideas?Skolson5903
02/26/2022, 12:33 AMr
02/26/2022, 12:44 AMr
02/26/2022, 12:44 AMr
02/26/2022, 12:45 AMr
02/26/2022, 12:45 AMr
02/26/2022, 12:45 AM