Skip to content

Commit

Permalink
Merge pull request #8 from adjust/v110
Browse files Browse the repository at this point in the history
Version 1.1.0
  • Loading branch information
genadyb authored Jul 21, 2022
2 parents 0c62699 + 043a167 commit 7a03acb
Show file tree
Hide file tree
Showing 14 changed files with 526 additions and 194 deletions.
8 changes: 4 additions & 4 deletions AdjustAdobeExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

Pod::Spec.new do |s|
s.name = 'AdjustAdobeExtension'
s.version = '1.0.4'
s.version = '1.1.0'
s.summary = 'Adjust SDK extension for Adobe Experience Platform.'
s.description = <<-DESC
A leading attribution solution that brings the full power of mobile ad measurement to your campaigns.
DESC
s.homepage = 'https://github.com/adjust/ios_adobe_extension'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Adjust SDK Team' => '[email protected]' }
s.source = { :git => 'https://github.com/adjust/ios_adobe_extension.git', :tag => "v1.0.4" }
s.author = { 'Adjust' => '[email protected]' }
s.source = { :git => 'https://github.com/adjust/ios_adobe_extension.git', :tag => "v1.1.0" }

s.ios.deployment_target = '10.0'

Expand All @@ -19,6 +19,6 @@ A leading attribution solution that brings the full power of mobile ad measureme
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}

s.dependency 'Adjust', '4.30.0'
s.dependency 'Adjust', '4.31.0'
s.dependency 'ACPCore'
end
15 changes: 13 additions & 2 deletions AdjustAdobeExtension/Classes/AdjustAdobeExtension.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,22 @@

NS_ASSUME_NONNULL_BEGIN

extern NSString * const ADJAdobeExtensionLogTag;
extern NSString * const ADJAdobeExtensionSdkPrefix;

// Action types
extern NSString * const ADJAdobeAdjustActionTrackEvent;
extern NSString * const ADJAdobeAdjustActionSetPushToken;

// Adjust Event
extern NSString * const ADJAdobeAdjustEventToken;
extern NSString * const ADJAdobeAdjustEventCurrency;
extern NSString * const ADJAdobeAdjustEventRevenue;
extern NSString * const ADJAdobeExtensionLogTag;
extern NSString * const ADJAdobeExtensionSdkPrefix;
extern NSString * const ADJAdobeAdjustEventCallbackParamPrefix;
extern NSString * const ADJAdobeAdjustEventPartnerParamPrefix;

// Push token
extern NSString * const ADJAdobeAdjustPushToken;

@interface AdjustAdobeExtension : ACPExtension <AdjustDelegate>

Expand Down
Loading

0 comments on commit 7a03acb

Please sign in to comment.