Hamid
02/06/2025, 8:56 AMcocoapods {
version = "1.0"
summary = "Some description for a Kotlin/Native module"
homepage = "Link to a Kotlin/Native module homepage"
name = "MyCocoaPod"
framework {
baseName = "MyFramework"
isStatic = false
transitiveExport = false // This is default.
}
pod("PostHog") {
version = "~> 3.0.0"
}
xcodeConfigurationToNativeBuildType["CUSTOM_DEBUG"] = NativeBuildType.DEBUG
xcodeConfigurationToNativeBuildType["CUSTOM_RELEASE"] = NativeBuildType.RELEASE
and this is the error
xecuting of '/usr/local/bin/pod install' failed with code 1 and message:
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "PostHog":
In Podfile:
PostHog (~> 3.0.0)
Specs satisfying the `PostHog (~> 3.0.0)` dependency were found, but they required a higher minimum deployment target.
Andrew Reed
02/06/2025, 10:23 AMcocoapods {
ios.deploymentTarget = "13.0"
}
Andrew Reed
02/06/2025, 10:24 AM