ooni-probe-cli/MOBILE/ios/template.podspec
Simone Basso 09e300ed26
fix(template.podspec): refer to the .xcframework
Tweaks the previous diff, which was incomplete.
2021-12-07 14:42:19 +01:00

14 lines
432 B
Ruby

Pod::Spec.new do |s|
s.name = "oonimkall"
s.version = "@VERSION@"
s.summary = "OONI Probe Library for iOS"
s.author = "Simone Basso"
s.homepage = "https://github.com/ooni/probe-cli"
s.license = { :type => "BSD" }
s.source = {
:http => "https://github.com/ooni/probe-cli/releases/download/@RELEASE@/oonimkall.xcframework.zip"
}
s.platform = :ios, "9.0"
s.ios.vendored_frameworks = "oonimkall.xcframework"
end