Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ jobs:
- name: Run UID2Prebid unit tests
run: xcodebuild test -project UID2Prebid/UID2Prebid.xcodeproj -scheme UID2Prebid -sdk iphonesimulator17.4 -destination "OS=17.4,name=iPhone 15"

- name: Lint pod spec
run: pod lib lint --verbose
- name: Lint UID2 pod spec
run: pod lib lint UID2.podspec.json --verbose

- name: Lint UID2Prebid pod spec
run: pod lib lint UID2Prebid.podspec.json --verbose

vulnerability-scan:
name: Vulnerability Scan
Expand Down
36 changes: 36 additions & 0 deletions UID2Prebid.podspec.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "UID2Prebid",
"summary": "UID2 Prebid Mobile SDK Integration",
"homepage": "https://unifiedid.com/",
"license": "Apache License, Version 2.0",
"version": "1.4.0",
"authors": {
"David Snabel-Caunt": "dave.snabel-caunt@thetradedesk.com"
},
"source": {
"git": "https://github.com/IABTechLab/uid2-ios-sdk.git",
"tag": "v1.4.0"
},
"platforms": {
"ios": "13.0"
},
"swift_versions": [
"5"
],
"requires_arc": true,
"frameworks": "Foundation",
"resource_bundles": {
"UID2Prebid": ["UID2Prebid/UID2Prebid/PrivacyInfo.xcprivacy"]
},
"source_files": [
"UID2Prebid/UID2Prebid/**/*"
],
"dependencies": {
"UID2": [
"~> 1.3.0"
],
"PrebidMobile": [
"~> 2.0"
]
}
}