Skip to content

Commit

Permalink
Fix resource bundle name conflict (#17)
Browse files Browse the repository at this point in the history
The podspec mistakenly uses the resource bundle name `UID2` which causes Xcode archiving to fail, as it will conflict with the UID2 SDK's resource bundle. Rename to match the spec name.

Bump version to 0.3.3 ready to release.
  • Loading branch information
dcaunt authored Jul 19, 2024
1 parent 703d189 commit ee4dca5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Sources/UID2IMAPlugin/UID2IMASecureSignalsAdapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ extension UID2IMASecureSignalsAdapter: IMASecureSignalsAdapter {
let version = IMAVersion()
version.majorVersion = 0
version.minorVersion = 3
version.patchVersion = 2
version.patchVersion = 3
return version
}

Expand Down
6 changes: 3 additions & 3 deletions UID2IMAPlugin.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"summary": "A plugin for integrating UID2 and Google IMA into iOS applications.",
"homepage": "https://unifiedid.com/",
"license": "Apache License, Version 2.0",
"version": "0.3.2",
"version": "0.3.3",
"authors": {
"David Snabel-Caunt": "[email protected]"
},
"source": {
"git": "https://github.com/IABTechLab/uid2-ios-plugin-google-ima.git",
"tag": "v0.3.2"
"tag": "v0.3.3"
},
"platforms": {
"ios": "13.0"
Expand All @@ -20,7 +20,7 @@
"frameworks": "Foundation",
"static_framework": true,
"resource_bundles": {
"UID2": ["Sources/UID2IMAPlugin/PrivacyInfo.xcprivacy"]
"UID2IMAPlugin": ["Sources/UID2IMAPlugin/PrivacyInfo.xcprivacy"]
},
"source_files": [
"Sources/UID2IMAPlugin/**/*"
Expand Down

0 comments on commit ee4dca5

Please sign in to comment.