From a6a6cb516dffcc688cf97bf657edac80cb095c16 Mon Sep 17 00:00:00 2001 From: Nick Porter <88012362+porter-stripe@users.noreply.github.com> Date: Wed, 17 Apr 2024 09:21:41 -0600 Subject: [PATCH] Fix 3DS2 privacy manifest in podspec (#3522) ## Summary - Adds the 3DS2 privacy manifest to the podspec for StripePayments ## Motivation https://github.com/stripe/stripe-ios/issues/3521 ## Testing Manual ## Changelog See diff --- CHANGELOG.md | 4 ++++ StripePayments.podspec | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a48d1233ec3..62ec53dca8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## x.x.x x-x-x +### Payments +* [Fixed] An issue where the PrivacyInfo.xcprivacy was not bundled with StripePayments when installing with Cocoapods. + ## 23.27.0 2024-04-08 ### Payments * [Added] Support for Alma bindings. diff --git a/StripePayments.podspec b/StripePayments.podspec index 21cf66bcb6d..c8fd082cf2d 100644 --- a/StripePayments.podspec +++ b/StripePayments.podspec @@ -21,6 +21,6 @@ Pod::Spec.new do |s| s.dependency 'StripeCore', s.version.to_s s.subspec 'Stripe3DS2' do |sp| sp.source_files = 'Stripe3DS2/Stripe3DS2/**/*.{h,m}' - sp.resource_bundles = { 'Stripe3DS2' => ['Stripe3DS2/Stripe3DS2/Resources/**/*.{lproj,png,xcassets}'] } + sp.resource_bundles = { 'Stripe3DS2' => ['Stripe3DS2/Stripe3DS2/Resources/**/*.{lproj,png,xcassets}', 'Stripe3DS2/Stripe3DS2/PrivacyInfo.xcprivacy'] } end end