diff --git a/ACPAudience.podspec b/ACPAudience.podspec index 2b66478e..3524a47c 100644 --- a/ACPAudience.podspec +++ b/ACPAudience.podspec @@ -1,29 +1,28 @@ Pod::Spec.new do |s| s.name = "ACPAudience" - s.version = "1.1.0" - s.summary = "Audience Manager framework for Adobe Experience Platform SDK. Written and Supported by Adobe." + s.version = "2.0.0" + s.summary = "Audience Manager library for Adobe Experience Platform SDK. Written and Supported by Adobe." s.description = <<-DESC - The Audience Manager framework provides APIs that allow use of Adobe Audience Manager in the Adobe Cloud Platform SDK. + The Audience Manager library provides APIs that allow use of Adobe Audience Manager in the Adobe Experience Platform SDK. DESC s.homepage = "https://github.com/Adobe-Marketing-Cloud/acp-sdks/releases" s.license = {:type => "Commercial", :file => "LICENSE.md"} s.author = "Adobe Experience Platform SDK Team" - s.source = { :git => 'https://github.com/Adobe-Marketing-Cloud/acp-sdks.git', :tag => "v1.1.0-ACPAudience" } + s.source = { + :git => 'https://github.com/Adobe-Marketing-Cloud/acp-sdks.git', + :tag => "v2.0.0-ACPAudience" + } s.platform = :ios, '10.0' - + s.requires_arc = true s.default_subspec = 'iOS' - # dependency on the core framework - s.dependency "ACPCore", "~> 1.0" + # dependency on the core library + s.dependency "ACPCore", "~> 2.0" s.subspec 'iOS' do |ios| - ios.vendored_frameworks = 'ACPAudience_iOS.framework' - ios.xcconfig = { - "FRAMEWORK_SEARCH_PATHS" => "'${PODS_ROOT}/ACPAudience'", - "LD_RUNPATH_SEARCH_PATHS" => "@loader_path/../Frameworks" - } - ios.requires_arc = true + ios.vendored_libraries = "libACPAudience_iOS.a" + ios.source_files = "include/*.h" end end diff --git a/ACPAudience_iOS.framework/ACPAudience_iOS b/ACPAudience_iOS.framework/ACPAudience_iOS deleted file mode 100755 index 8a5997b5..00000000 Binary files a/ACPAudience_iOS.framework/ACPAudience_iOS and /dev/null differ diff --git a/ACPAudience_iOS.framework/Headers/ACPAudience_iOS.h b/ACPAudience_iOS.framework/Headers/ACPAudience_iOS.h deleted file mode 100644 index 12c075a9..00000000 --- a/ACPAudience_iOS.framework/Headers/ACPAudience_iOS.h +++ /dev/null @@ -1,28 +0,0 @@ -/* ************************************************************************ - * - * ADOBE CONFIDENTIAL - * ___________________ - * - * Copyright 2018 Adobe Systems Incorporated - * All Rights Reserved. - * - * NOTICE: All information contained herein is, and remains - * the property of Adobe Systems Incorporated and its suppliers, - * if any. The intellectual and technical concepts contained - * herein are proprietary to Adobe Systems Incorporated and its - * suppliers and are protected by trade secret or copyright law. - * Dissemination of this information or reproduction of this material - * is strictly forbidden unless prior written permission is obtained - * from Adobe Systems Incorporated. - **************************************************************************/ - -#import - -//! Project version number for ACPAudience_iOS. -FOUNDATION_EXPORT double ACPAudience_iOSVersionNumber; - -//! Project version string for ACPAudience_iOS. -FOUNDATION_EXPORT const unsigned char ACPAudience_iOSVersionString[]; - -// import platform core public headers -#import diff --git a/ACPAudience_iOS.framework/Info.plist b/ACPAudience_iOS.framework/Info.plist deleted file mode 100644 index 6634f532..00000000 Binary files a/ACPAudience_iOS.framework/Info.plist and /dev/null differ diff --git a/ACPAudience_iOS.framework/Modules/module.modulemap b/ACPAudience_iOS.framework/Modules/module.modulemap deleted file mode 100644 index bf3c73a9..00000000 --- a/ACPAudience_iOS.framework/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module ACPAudience_iOS { - umbrella header "ACPAudience_iOS.h" - - export* - module* { export* } -} diff --git a/ACPAudience_iOS.framework/Headers/ACPAudience.h b/include/ACPAudience.h similarity index 69% rename from ACPAudience_iOS.framework/Headers/ACPAudience.h rename to include/ACPAudience.h index 70c69a18..56acefc1 100644 --- a/ACPAudience_iOS.framework/Headers/ACPAudience.h +++ b/include/ACPAudience.h @@ -1,22 +1,10 @@ -/*************************************************************************** - * - * ADOBE CONFIDENTIAL - * ___________________ - * - * Copyright 2018 Adobe Systems Incorporated - * All Rights Reserved. - * - * NOTICE: All information contained herein is, and remains - * the property of Adobe Systems Incorporated and its suppliers, - * if any. The intellectual and technical concepts contained - * herein are proprietary to Adobe Systems Incorporated and its - * suppliers and are protected by trade secret or copyright law. - * Dissemination of this information or reproduction of this material - * is strictly forbidden unless prior written permission is obtained - * from Adobe Systems Incorporated. - * - **************************************************************************/ -// Audience Version: 1.1.0 +// +// ACPAudience.h +// Adobe Digital Marketing Suite -- iOS Application Measurement Library +// +// Copyright 1996-2018. Adobe, Inc. All Rights Reserved +// +// Audience Version: 2.0.0 #import diff --git a/libACPAudience_iOS.a b/libACPAudience_iOS.a new file mode 100644 index 00000000..7bcd90b7 Binary files /dev/null and b/libACPAudience_iOS.a differ