From 6fbeaa3f1afe260a90271eb1dc7303aeb69755d1 Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Tue, 7 Dec 2021 14:29:27 +0100 Subject: [PATCH] [forwardport] fix(template.podspec): the correct suffix is xcframework (#639) (#640) This diff forward ports 21a9b977eef7a8c8a6107aec713b6202ba9e5d48 The template was still wrong and was referencing a .framework while now we generate a .xcframework. See, e.g., this failed build: https://github.com/ooni/probe-ios/runs/4444313406?check_suite_focus=true Part of https://github.com/ooni/probe/issues/1843 --- MOBILE/ios/template.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MOBILE/ios/template.podspec b/MOBILE/ios/template.podspec index e801ef7..34e4f4e 100644 --- a/MOBILE/ios/template.podspec +++ b/MOBILE/ios/template.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| 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.framework.zip" + :http => "https://github.com/ooni/probe-cli/releases/download/@RELEASE@/oonimkall.xcframework.zip" } s.platform = :ios, "9.0" s.ios.vendored_frameworks = "oonimkall.framework"