Skip to content

Commit

Permalink
Updated to Ignite 1.7.0 (Retail SDKs 3.0.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbackertm committed May 16, 2024
1 parent c35e452 commit c6b2bf5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion TicketsSDKDemoIntegration.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@
repositoryURL = "https://github.com/ticketmaster/iOS-TicketmasterSDK.git";
requirement = {
kind = exactVersion;
version = 1.6.4;
version = 1.7.0;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
18 changes: 18 additions & 0 deletions TicketsSDKDemoIntegration/MainMenuViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
//

import UIKit
import TicketmasterFoundation
import TicketmasterAuthentication
import TicketmasterSecureEntry
import TicketmasterTickets

class MainMenuViewController: UITableViewController {

Expand All @@ -14,6 +18,8 @@ class MainMenuViewController: UITableViewController {

title = "Main Menu"

printVersions()

configureBothSDKs()

configureNavBarBranding()
Expand All @@ -39,4 +45,16 @@ private extension MainMenuViewController {
navigationController?.navigationBar.scrollEdgeAppearance = barAppearance
navigationController?.navigationBar.tintColor = .white
}

func printVersions() {
print("==========================================")
print("TMFoundation : v\(TMFoundation.shared.version)")
print("TMAuthentication : v\(TMAuthentication.shared.version)")
//print("TMDiscoveryAPI : v\(TMDiscoveryAPI.shared.version)")
//print("TMPrePurchase : v\(TMPrePurchase.shared.version)")
//print("TMPurchase : v\(TMPurchase.shared.version)")
print("TMTickets : v\(TMTickets.shared.version)")
print(" - SecureEntryView: v\(SecureEntryView.version)")
print("==========================================")
}
}

0 comments on commit c6b2bf5

Please sign in to comment.