File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "mParticle-Rokt"
3- s . version = "8.3.2 "
3+ s . version = "8.3.3 "
44 s . summary = "Rokt integration for mParticle"
55
66 s . description = <<-DESC
Original file line number Diff line number Diff line change 22
33#import < Rokt_Widget/Rokt_Widget-Swift.h>
44
5+ // Kit version
6+ static NSString * const kMPRoktKitVersion = @" 8.3.3" ;
7+
58// Constants for kit configuration keys
69static NSString * const kMPKitConfigurationIdKey = @" id" ;
710static NSString * const kMPRemoteConfigKitConfigurationKey = @" as" ;
@@ -66,16 +69,14 @@ - (MPKitExecStatus *)didFinishLaunchingWithConfiguration:(NSDictionary *)configu
6669 roktKit = self;
6770
6871 NSString *sdkVersion = [MParticle sharedInstance ].version ;
69- // https://go.mparticle.com/work/SQDSDKS-7379
70- NSString *kitVersion = @" 8.3.2" ;
7172
7273 // Initialize Rokt SDK here
73- [MPKitRokt MPLog: [NSString stringWithFormat: @" Attempting to initialize Rokt with Kit Version: %@ " , kitVersion ]];
74+ [MPKitRokt MPLog: [NSString stringWithFormat: @" Attempting to initialize Rokt with Kit Version: %@ " , kMPRoktKitVersion ]];
7475
7576 // Apply mParticle log level to Rokt SDK before initialization
7677 [MPKitRokt applyMParticleLogLevel ];
7778
78- [Rokt initWithRoktTagId: partnerId mParticleSdkVersion: sdkVersion mParticleKitVersion: kitVersion onInitComplete: ^(BOOL InitComplete) {
79+ [Rokt initWithRoktTagId: partnerId mParticleSdkVersion: sdkVersion mParticleKitVersion: kMPRoktKitVersion onInitComplete: ^(BOOL InitComplete) {
7980 if (InitComplete) {
8081 [self start ];
8182 [MPKitRokt MPLog: @" Rokt Init Complete" ];
You can’t perform that action at this time.
0 commit comments