Skip to content

Commit 49e4947

Browse files
authored
Merge pull request #9 from BranchMetrics/staging
Staging
2 parents e3bf73f + a40418b commit 49e4947

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

AdobeBranchExtension.podspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "AdobeBranchExtension"
3-
s.version = "0.1.7"
3+
s.version = "1.0.0"
44
s.summary = "The Branch extension for Adobe Cloud Platform on iOS."
55

66
s.description = <<-DESC
@@ -18,9 +18,10 @@ their app content to improve discoverability and optimize mobile campaigns.
1818

1919
s.platform = :ios, '10.0'
2020
s.requires_arc = true
21+
s.static_framework = true
2122

2223
s.source_files = 'AdobeBranchExtension/Classes/**/*'
2324

24-
s.dependency 'ACPCore', '= 2.0.3'
25-
s.dependency 'Branch', '>= 0.25.9'
25+
s.dependency 'ACPCore', '= 2.1.0'
26+
s.dependency 'Branch', '= 0.26.0'
2627
end

AdobeBranchExtension/Classes/AdobeBranchExtensionClass.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
#import <Foundation/Foundation.h>
1010
#import <Branch/Branch.h>
11-
#import "ACPCore.h"
12-
#import "ACPExtension.h"
11+
#import <ACPCore/ACPCore.h>
12+
#import <ACPCore/ACPExtension.h>
1313

1414
NS_ASSUME_NONNULL_BEGIN
1515

AdobeBranchExtension/Classes/AdobeBranchExtensionClass.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#pragma mark Constants
1313

14-
NSString*const ABEBranchExtensionVersion = @"0.1.6";
14+
NSString*const ABEBranchExtensionVersion = @"1.0.0";
1515

1616
NSString*const ABEBranchEventType = @"com.branch.eventType";
1717
NSString*const ABEBranchEventSource = @"com.branch.eventSource";
@@ -51,7 +51,7 @@ + (Branch *)bnc_branchInstance {
5151
branchInstance = [Branch getInstance];
5252
}
5353
});
54-
54+
5555
return branchInstance;
5656
}
5757

@@ -147,7 +147,7 @@ + (BranchEvent *)branchEventFromAdbobeEventName:(NSString *)eventName
147147

148148
#define stringForKey(key) \
149149
BNCStringWithObject(dictionary[@#key])
150-
150+
151151
NSString *value = stringForKey(currency);
152152
if (value.length) event.currency = value;
153153

@@ -175,7 +175,7 @@ + (BranchEvent *)branchEventFromAdbobeEventName:(NSString *)eventName
175175
if (value.length) event.searchQuery = value;
176176

177177
#undef stringForKey
178-
178+
179179
event.customData = BNCStringDictionaryWithDictionary(dictionary);
180180
return event;
181181
}

AdobeBranchExtension/Classes/AdobeBranchExtensionListener.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
//
88

99
#import <Foundation/Foundation.h>
10-
#import "ACPCore.h"
11-
#import "ACPExtension.h"
10+
#import <ACPCore/ACPCore.h>
11+
#import <ACPCore/ACPExtension.h>
1212

1313
NS_ASSUME_NONNULL_BEGIN
1414

0 commit comments

Comments
 (0)