Skip to content

Commit ee4dca5

Browse files
authored
Fix resource bundle name conflict (#17)
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.
1 parent 703d189 commit ee4dca5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Sources/UID2IMAPlugin/UID2IMASecureSignalsAdapter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extension UID2IMASecureSignalsAdapter: IMASecureSignalsAdapter {
2626
let version = IMAVersion()
2727
version.majorVersion = 0
2828
version.minorVersion = 3
29-
version.patchVersion = 2
29+
version.patchVersion = 3
3030
return version
3131
}
3232

UID2IMAPlugin.podspec.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"summary": "A plugin for integrating UID2 and Google IMA into iOS applications.",
44
"homepage": "https://unifiedid.com/",
55
"license": "Apache License, Version 2.0",
6-
"version": "0.3.2",
6+
"version": "0.3.3",
77
"authors": {
88
"David Snabel-Caunt": "[email protected]"
99
},
1010
"source": {
1111
"git": "https://github.com/IABTechLab/uid2-ios-plugin-google-ima.git",
12-
"tag": "v0.3.2"
12+
"tag": "v0.3.3"
1313
},
1414
"platforms": {
1515
"ios": "13.0"
@@ -20,7 +20,7 @@
2020
"frameworks": "Foundation",
2121
"static_framework": true,
2222
"resource_bundles": {
23-
"UID2": ["Sources/UID2IMAPlugin/PrivacyInfo.xcprivacy"]
23+
"UID2IMAPlugin": ["Sources/UID2IMAPlugin/PrivacyInfo.xcprivacy"]
2424
},
2525
"source_files": [
2626
"Sources/UID2IMAPlugin/**/*"

0 commit comments

Comments
 (0)