-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -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/**/*" | ||
|