-
Notifications
You must be signed in to change notification settings - Fork 2
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 #4 from adjust/v104
Version 1.0.4
- Loading branch information
Showing
16 changed files
with
162 additions
and
11 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,15 +1,15 @@ | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'AdjustAdobeExtension' | ||
s.version = '1.0.3' | ||
s.version = '1.0.4' | ||
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.3" } | ||
s.source = { :git => 'https://github.com/adjust/ios_adobe_extension.git', :tag => "v1.0.4" } | ||
|
||
s.ios.deployment_target = '10.0' | ||
|
||
|
@@ -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.29.7' | ||
s.dependency 'Adjust', '4.30.0' | ||
s.dependency 'ACPCore' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
### Version 1.0.4 (9th May 2022) | ||
#### Added | ||
- Added Swift Package Manager support. | ||
|
||
#### Native iOS SDK | ||
- [[email protected]](https://github.com/adjust/ios_sdk/tree/v4.30.0) | ||
|
||
--- | ||
|
||
### Version 1.0.3 (25th February 2022) | ||
#### Added | ||
- Added Xcode 13 compatibility. | ||
|
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,51 @@ | ||
// swift-tools-version:5.3 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "AdjustAdobeExtension", | ||
platforms: [.iOS(.v10)], | ||
products: [ | ||
.library( | ||
name: "AdjustAdobeExtension", | ||
targets: ["AdjustAdobeExtension"]) | ||
], | ||
dependencies: [ | ||
.package( | ||
name: "Adjust", | ||
url: "https://github.com/adjust/ios_sdk.git", | ||
from: "4.30.0" | ||
), | ||
], | ||
targets: [ | ||
.target( | ||
name: "AdjustAdobeExtension", | ||
dependencies: ["Adjust","ACPCore","ACPIdentity","ACPLifecycle","ACPSignal"], | ||
publicHeadersPath: "include", | ||
cSettings: [ | ||
.headerSearchPath("include/AdjustAdobeExtension") | ||
] | ||
), | ||
.binaryTarget( | ||
name: "ACPCore", | ||
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.0.4/ACPCore.xcframework-2.9.5.zip", | ||
checksum: "1feb78e211bfc1d4e52e499323772f66c3eaab56434342465f7ee8a036a51fa9" | ||
), | ||
.binaryTarget( | ||
name: "ACPIdentity", | ||
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.0.4/ACPIdentity.xcframework-2.5.2.zip", | ||
checksum: "9a4843568ad0832e575dbecb2524265bbfd9baf2557bc972f78b4359d70f8bc0" | ||
), | ||
.binaryTarget( | ||
name: "ACPLifecycle", | ||
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.0.4/ACPLifecycle.xcframework-2.2.1.zip", | ||
checksum: "02d7b6a1c615d9f5b222d58a95a0ded1ce4b1dac60fbecc9858d9e8dcd74c2eb" | ||
), | ||
.binaryTarget( | ||
name: "ACPSignal", | ||
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.0.4/ACPSignal.xcframework-2.2.0.zip", | ||
checksum: "2f7c9db8e8163fe2c5aa3e89fce485075b32751e65402f10a69eea674dd965a5" | ||
) | ||
] | ||
) |
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 @@ | ||
../../AdjustAdobeExtension/Classes/AdjustAdobeExtension.m |
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 @@ | ||
../../AdjustAdobeExtension/Classes/AdjustAdobeExtensionConfig.m |
1 change: 1 addition & 0 deletions
1
Sources/AdjustAdobeExtension/AdjustAdobeExtensionEventListener.m
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 @@ | ||
../../AdjustAdobeExtension/Classes/AdjustAdobeExtensionEventListener.m |
1 change: 1 addition & 0 deletions
1
Sources/AdjustAdobeExtension/AdjustAdobeExtensionSharedStateListener.m
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 @@ | ||
../../AdjustAdobeExtension/Classes/AdjustAdobeExtensionSharedStateListener.m |
1 change: 1 addition & 0 deletions
1
Sources/AdjustAdobeExtension/include/AdjustAdobeExtension/AdjustAdobeExtension.h
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 @@ | ||
../../../../AdjustAdobeExtension/Classes/AdjustAdobeExtension.h |
1 change: 1 addition & 0 deletions
1
Sources/AdjustAdobeExtension/include/AdjustAdobeExtension/AdjustAdobeExtensionConfig.h
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 @@ | ||
../../../../AdjustAdobeExtension/Classes/AdjustAdobeExtensionConfig.h |
1 change: 1 addition & 0 deletions
1
...ces/AdjustAdobeExtension/include/AdjustAdobeExtension/AdjustAdobeExtensionEventListener.h
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 @@ | ||
../../../../AdjustAdobeExtension/Classes/AdjustAdobeExtensionEventListener.h |
1 change: 1 addition & 0 deletions
1
...justAdobeExtension/include/AdjustAdobeExtension/AdjustAdobeExtensionSharedStateListener.h
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 @@ | ||
../../../../AdjustAdobeExtension/Classes/AdjustAdobeExtensionSharedStateListener.h |
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 +1 @@ | ||
1.0.3 | ||
1.0.4 |