Skip to content

Commit

Permalink
release: 1.7.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Repro Bot committed Jun 2, 2016
1 parent 62f3081 commit 5590d4e
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.7.19 (2016/06/01)

## Changes

- Deprecate `enableCrashReporting` API

# 1.7.16 (2016/05/18)

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion Repro.embeddedframework/Repro.framework/Headers/Repro.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,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.
Binary file not shown.
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 5590d4e

Please sign in to comment.