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
2 changes: 1 addition & 1 deletion ConsentViewController.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/SourcePointUSA/ios-cmp-app.git', :tag => s.version.to_s }
s.swift_version = '5.1'
s.source_files = 'ConsentViewController/Classes/**/*'
s.dependency 'SPMobileCore', '0.1.12'
s.dependency 'SPMobileCore', '0.1.13'
s.ios.deployment_target = '10.0'
s.ios.exclude_files = 'ConsentViewController/Classes/Views/tvOS'
s.tvos.deployment_target = '12.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,25 @@ extension SPError {

case let coreLoadMessagesException as SPMobileCore.LoadMessagesException:
let translated = InvalidResponseGetMessagesEndpointError()
translated.optionalDecription = coreLoadMessagesException.causedBy?.description_ ?? InvalidResponseGetMessagesEndpointError.description()
translated.optionalDecription = coreLoadMessagesException.cause?.description ?? InvalidResponseGetMessagesEndpointError.description()
return translated

case let coreReportActionException as SPMobileCore.ReportActionException:
let translated = ReportActionError()
translated.optionalDecription = coreReportActionException.causedBy?.description_ ?? ReportActionError.description()
translated.optionalDecription = coreReportActionException.cause?.description ?? ReportActionError.description()
return translated

case _ as SPMobileCore.InvalidCustomConsentUUIDError:
return PostingCustomConsentWithoutConsentUUID()

case let corePostCustomConsentGDPRException as SPMobileCore.PostCustomConsentGDPRException:
let translated = InvalidResponseCustomError()
translated.optionalDecription = corePostCustomConsentGDPRException.causedBy?.description_ ?? InvalidResponseCustomError.description()
translated.optionalDecription = corePostCustomConsentGDPRException.cause?.description ?? InvalidResponseCustomError.description()
return translated

case let coreDeleteCustomConsentGDPRException as SPMobileCore.DeleteCustomConsentGDPRException:
let translated = InvalidResponseDeleteCustomError()
translated.optionalDecription = coreDeleteCustomConsentGDPRException.causedBy?.description_ ?? InvalidResponseDeleteCustomError.description()
translated.optionalDecription = coreDeleteCustomConsentGDPRException.cause?.description ?? InvalidResponseDeleteCustomError.description()
return translated

default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extension SPError {
return CoreSPError(
code: String(code),
description: description,
causedBy: nil,
cause: nil,
campaignType: campaignType.toCore()
)
}
Expand Down
8 changes: 4 additions & 4 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- ConsentViewController (7.12.5):
- Down (~> 0.11.0)
- SPMobileCore (= 0.1.12)
- SPMobileCore (= 0.1.13)
- Down (0.11.0)
- FirebaseAnalytics (11.13.0):
- FirebaseAnalytics/AdIdSupport (= 11.13.0)
Expand Down Expand Up @@ -128,7 +128,7 @@ PODS:
- Nimble (10.0.0)
- PromisesObjC (2.4.0)
- Quick (5.0.1)
- SPMobileCore (0.1.12)
- SPMobileCore (0.1.13)
- SwiftLint (0.59.1)
- Wormholy (1.7.0)

Expand Down Expand Up @@ -173,7 +173,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
ConsentViewController: e4bd58a6882491215b4e5c9de7a8d647c98fb908
ConsentViewController: 264131c949a13240f5d3db5eff8a95c8dea5c67d
Down: b6ba1bc985c9d2f4e15e3b293d2207766fa12612
FirebaseAnalytics: 630349facf4a114a0977e5d7570e104261973287
FirebaseCore: c692c7f1c75305ab6aff2b367f25e11d73aa8bd0
Expand All @@ -194,7 +194,7 @@ SPEC CHECKSUMS:
Nimble: 5316ef81a170ce87baf72dd961f22f89a602ff84
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
Quick: 749aa754fd1e7d984f2000fe051e18a3a9809179
SPMobileCore: f318e4b415d7bf15575e9fd00e2d0da066fb605c
SPMobileCore: 2a77dd31b40f1457ef9df14a0e72163fa00d87c0
SwiftLint: 3d48e2fb2a3468fdaccf049e5e755df22fb40c2c
Wormholy: ab1c8c2f02f58587a0941deb0088555ffbf039a1

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Example/Pods/SPMobileCore/SPMobileCore.xcframework/Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.

Large diffs are not rendered by default.

Loading