Skip to content

Commit

Permalink
Removed call to NSLog
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Kalash committed Sep 9, 2016
1 parent c6a5d66 commit 85c7380
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion OneSignal.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OneSignal"
s.version = "2.1.4"
s.version = "2.1.5"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
Binary file modified iOS_SDK/Framework/OneSignal.framework/Versions/A/OneSignal
Binary file not shown.
Binary file modified iOS_SDK/Framework/OneSignal.framework/Versions/B/OneSignal
Binary file not shown.
2 changes: 1 addition & 1 deletion iOS_SDK/OneSignal/OneSignal.m
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@

@implementation OneSignal

NSString* const ONESIGNAL_VERSION = @"020104";
NSString* const ONESIGNAL_VERSION = @"020105";
static NSString* mSDKType = @"native";
static BOOL coldStartFromTapOnNotification = NO;
static BOOL registeredWithApple = NO; //Has attempted to register for push notifications with Apple.
Expand Down
3 changes: 1 addition & 2 deletions iOS_SDK/OneSignal/UIApplication+Swizzling.m
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,7 @@ -(void)oneSignalApplicationWillTerminate:(UIApplication *)application {

#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)
+ (void)load {

NSLog(@"----- LOOOOGGGGG ------");

if (SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(@"7.0"))
return;

Expand Down

0 comments on commit 85c7380

Please sign in to comment.