-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #519 from adjust/v4271
Version 4.27.1
- Loading branch information
Showing
32 changed files
with
737 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Adjust" | ||
s.version = "4.27.0" | ||
s.version = "4.27.1" | ||
s.summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com." | ||
s.homepage = "https://github.com/adjust/ios_sdk" | ||
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' } | ||
s.author = { "Christian Wellenbrock" => "[email protected]" } | ||
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.27.0" } | ||
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.27.1" } | ||
s.ios.deployment_target = '6.0' | ||
s.tvos.deployment_target = '9.0' | ||
s.framework = 'SystemConfiguration' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// NSNumber+ADJAdditions.h | ||
// Adjust | ||
// | ||
// Created by Uglješa Erceg (@uerceg) on 26th March 2021. | ||
// Copyright (c) 2021 Adjust GmbH. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface NSNumber(ADJAdditions) | ||
|
||
+ (BOOL)adjIsEqual:(NSNumber *)first toNumber:(NSNumber *)second; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// NSNumber+ADJAdditions.m | ||
// Adjust | ||
// | ||
// Created by Uglješa Erceg (@uerceg) on 26th March 2021. | ||
// Copyright (c) 2021 Adjust GmbH. All rights reserved. | ||
// | ||
|
||
#import "NSNumber+ADJAdditions.h" | ||
|
||
@implementation NSNumber(ADJAdditions) | ||
|
||
+ (BOOL)adjIsEqual:(NSNumber *)first toNumber:(NSNumber *)second { | ||
if (first == nil && second == nil) { | ||
return YES; | ||
} | ||
|
||
return [first isEqualToNumber:second]; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.