diff --git a/Repro.embeddedframework/Repro.framework/Headers/RPRUserProfileGender.h b/Repro.embeddedframework/Repro.framework/Headers/RPRUserProfileGender.h new file mode 100644 index 0000000..cf2e93f --- /dev/null +++ b/Repro.embeddedframework/Repro.framework/Headers/RPRUserProfileGender.h @@ -0,0 +1,11 @@ +// +// Repro iOS SDK +// +// Copyright (c) 2014 Repro Inc. All rights reserved. +// + +typedef NS_ENUM(NSInteger, RPRUserProfileGender) { + RPRUserProfileGenderOther = 0, + RPRUserProfileGenderMale, + RPRUserProfileGenderFemale +}; \ No newline at end of file diff --git a/Repro.embeddedframework/Repro.framework/Headers/Repro.h b/Repro.embeddedframework/Repro.framework/Headers/Repro.h index dc198fb..62e8ac6 100644 --- a/Repro.embeddedframework/Repro.framework/Headers/Repro.h +++ b/Repro.embeddedframework/Repro.framework/Headers/Repro.h @@ -6,6 +6,7 @@ #import #import "RPREventProperties.h" +#import "RPRUserProfileGender.h" //! Project version number for Repro. FOUNDATION_EXPORT double ReproVersionNumber; @@ -34,6 +35,8 @@ typedef NS_ENUM(NSInteger, RPRLogLevel) { + (void)setIntUserProfile:(NSInteger)value forKey:(NSString*)key; + (void)setDoubleUserProfile:(double)value forKey:(NSString*)key; + (void)setDateUserProfile:(NSDate*)value forKey:(NSString*)key; ++ (void)setUserGender:(RPRUserProfileGender)value; ++ (void)setUserEmailAddress:(NSString*)value; // Event tracking + (void)track:(NSString*)name properties:(NSDictionary*)properties; @@ -52,6 +55,7 @@ typedef NS_ENUM(NSInteger, RPRLogLevel) { + (void)trackLead:(RPRLeadProperties *)properties; // Recording ++ (void)forceCaptureOnMainThread; + (void)startRecording; + (void)stopRecording; + (void)pauseRecording; diff --git a/Repro.embeddedframework/Repro.framework/Info.plist b/Repro.embeddedframework/Repro.framework/Info.plist index 99ecc1d..1c971a6 100644 Binary files a/Repro.embeddedframework/Repro.framework/Info.plist and b/Repro.embeddedframework/Repro.framework/Info.plist differ diff --git a/Repro.embeddedframework/Repro.framework/Repro b/Repro.embeddedframework/Repro.framework/Repro index 084cb1e..9b29052 100644 Binary files a/Repro.embeddedframework/Repro.framework/Repro and b/Repro.embeddedframework/Repro.framework/Repro differ diff --git a/Repro.embeddedframework/Repro.framework/ReproSDKResources.bundle/Info.plist b/Repro.embeddedframework/Repro.framework/ReproSDKResources.bundle/Info.plist index 9061724..336dab9 100644 Binary files a/Repro.embeddedframework/Repro.framework/ReproSDKResources.bundle/Info.plist and b/Repro.embeddedframework/Repro.framework/ReproSDKResources.bundle/Info.plist differ diff --git a/Repro.embeddedframework/Resources/ReproSDKResources.bundle/Info.plist b/Repro.embeddedframework/Resources/ReproSDKResources.bundle/Info.plist index 9061724..336dab9 100644 Binary files a/Repro.embeddedframework/Resources/ReproSDKResources.bundle/Info.plist and b/Repro.embeddedframework/Resources/ReproSDKResources.bundle/Info.plist differ