Skip to content

Commit

Permalink
Merge pull request #18 from paysafegroup/privay-manifest-podspec
Browse files Browse the repository at this point in the history
Add Privacy Manifest to resource bundles in podspec
  • Loading branch information
ivanDinkovPaysafe authored Jul 16, 2024
2 parents dc0c85c + a22620c commit a3e1e9e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [2.7.0]
### Added - 2024-07-16
- Change Privacy Manifest location and add to resource bundles in podspec (#16)

## [2.6.0]
### Added - 2024-04-10
- Add Privacy Manifest (#15)
Expand Down
6 changes: 5 additions & 1 deletion Paysafe_SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Paysafe_SDK"
s.version = "2.6.0"
s.version = "2.7.0"
s.summary = "Paysafe SDK handling 3DS 2 and Apple Pay"

s.license = "MIT"
Expand All @@ -12,6 +12,10 @@ Pod::Spec.new do |s|
s.source_files = 'Paysafe_SDK/**/*.{swift,h,m}'
s.resources = 'Paysafe_SDK/**/*.html','**/*paysafe_sdk_versioning-Info.plist'

s.resource_bundles = {
'Paysafe_SDK_Privacy' => ['Paysafe_SDK/PrivacyInfo.xcprivacy']
}

s.platform = :ios, "12.0"
s.swift_version = '5.0'
s.requires_arc = true
Expand Down
2 changes: 1 addition & 1 deletion Paysafe_SDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@
2BCCA97922D4DF9B00C7772A = {
isa = PBXGroup;
children = (
2EF00A642BC3F6CF000151C1 /* PrivacyInfo.xcprivacy */,
2BCCA98522D4DF9B00C7772A /* Paysafe_SDK */,
2BEC412822E0BE6F0087FD48 /* MerchantBackend */,
2BD6F25A22D5F24200B38687 /* Example */,
Expand All @@ -347,6 +346,7 @@
2BCCA98522D4DF9B00C7772A /* Paysafe_SDK */ = {
isa = PBXGroup;
children = (
2EF00A642BC3F6CF000151C1 /* PrivacyInfo.xcprivacy */,
64CA5ABA22E20B8D00CE4222 /* Utils.swift */,
64EFD6F122FAB2D000BB1C9A /* Logger.swift */,
64B3907F23324F7E007ED4B0 /* paysafe_sdk_versioning-Info.plist */,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion paysafe_sdk_versioning-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<plist version="1.0">
<dict>
<key>PaysafeSDKBundleVersion</key>
<string>2.6.0</string>
<string>2.7.0</string>
</dict>
</plist>

0 comments on commit a3e1e9e

Please sign in to comment.