Skip to content

Commit

Permalink
release: 1.7.35
Browse files Browse the repository at this point in the history
  • Loading branch information
Repro Bot committed Feb 11, 2018
1 parent f8df5b5 commit 3d87cbf
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 340 deletions.
4 changes: 3 additions & 1 deletion Repro.embeddedframework/Repro.framework/Headers/Repro.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ typedef NS_ENUM(NSInteger, RPRLogLevel) {

// User profile
+ (void)setUserID:(NSString *)userID;
+ (NSString *)getUserID;
+ (NSString *)getDeviceID;
+ (void)setUserProfile:(NSString *)value forKey:(NSString *)key;
+ (void)setUserProfile:(NSDictionary *)profile;

Expand All @@ -49,7 +51,7 @@ typedef NS_ENUM(NSInteger, RPRLogLevel) {
+ (void)unmaskForKey:(NSString*)key;

// Crash reporting
+ (void)enableCrashReporting;
+ (void)enableCrashReporting __attribute__ ((deprecated));

// Log
+ (void)setLogLevel:(RPRLogLevel)level;
Expand Down
Binary file modified Repro.embeddedframework/Repro.framework/Info.plist
Binary file not shown.
Binary file modified Repro.embeddedframework/Repro.framework/Repro
Binary file not shown.
Binary file not shown.

This file was deleted.

Binary file not shown.
166 changes: 0 additions & 166 deletions Repro.embeddedframework/Resources/ReproSDKResources.bundle/repro.js

This file was deleted.

3 changes: 0 additions & 3 deletions cpp/ReproCpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ class ReproCpp {
static void track(const char*eventName);
static void trackWithProperties(const char* eventName, const char* jsonDictionary);

// Crash Reporting
static void enableCrashReporting();

// In App Message
static void disableInAppMessageOnActive();
static void showInAppMessage();
Expand Down
4 changes: 0 additions & 4 deletions cpp/ReproCpp.mm
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,6 @@
[Repro track:convertCStringToNSString(eventName) properties:convertCStringJSONToNSDictionary(jsonDictionary)];
}

void ReproCpp::enableCrashReporting() {
[Repro enableCrashReporting];
}

// In App Message
void ReproCpp::disableInAppMessageOnActive() {
[Repro disableInAppMessageOnActive];
Expand Down

0 comments on commit 3d87cbf

Please sign in to comment.