From af6676b56468aacc286f00d4ececca27fa2271a2 Mon Sep 17 00:00:00 2001 From: Daniel Berger Date: Fri, 1 Sep 2023 17:57:42 +0000 Subject: [PATCH 1/3] Pull request #907: updated podfile Merge in MOBILE-SDK/app_mobile-sdk-ios from updated_podfile to develop Squashed commit of the following: commit d2b45eee35958357be36fd49956f298e10601a72 Author: Daniel Berger Date: Fri Sep 1 11:54:02 2023 -0400 updated support email in README commit 9e8aeda0387edd50bf59648e6ce844ebcd9e32f9 Author: Daniel Berger Date: Fri Sep 1 11:52:21 2023 -0400 excluding ANSDKResources.bundle commit e4203e5f7a1918c04d944cc9d0d1d2092d783f24 Author: Daniel Berger Date: Wed Aug 23 18:07:52 2023 -0400 updated podfile --- AppNexusSDK.podspec | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AppNexusSDK.podspec b/AppNexusSDK.podspec index 08fe6dd0..ee6ace28 100644 --- a/AppNexusSDK.podspec +++ b/AppNexusSDK.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = "AppNexusSDK" s.version = "8.8.0" - s.platform = :ios, "10.0" + s.platform = :ios, "11.0" s.summary = "AppNexus iOS Mobile Advertising SDK" s.description = <<-DESC @@ -22,10 +22,10 @@ DESC subspec.source_files = "sdk/sourcefiles/**/*.{h,m}" subspec.public_header_files = "sdk/sourcefiles/public-headers/*.h" subspec.resources = "sdk/sourcefiles/**/*.{png,bundle,xib,nib,js,html,strings}","sdk/AppNexusSDK/SDK-Info.plist" - subspec.vendored_frameworks = "sdk/sourcefiles/Viewability/OMSDK_Appnexus.xcframework" + subspec.vendored_frameworks = "sdk/sourcefiles/Viewability/dynamic_framework/OMSDK_Appnexus.xcframework" subspec.frameworks = 'WebKit' subspec.pod_target_xcconfig = { "VALID_ARCHS[sdk=iphoneos*]": "arm64 armv7", "VALID_ARCHS[sdk=iphonesimulator*]": "x86_64 arm64" } - subspec.exclude_files = "sdk/sourcefiles/macOS/" + subspec.exclude_files = "sdk/sourcefiles/macOS/", "sdk/sourcefiles/Resources/ANSDKResources.bundle" end diff --git a/README.md b/README.md index 32802d09..69668040 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ See the documentation on our wiki here: https://docs.xandr.com/bundle/mobile-sdk Get the latest release notes here: https://github.com/appnexus/mobile-sdk-ios/releases -**To file an issue or request an enhancement please visit the AppNexus Customer Support Portal (https://support.appnexus.com). **We do not accept GitHub issues.** +**To file an issue or request an enhancement please visit the AppNexus Customer Support Portal (https://help.xandr.com). **We do not accept GitHub issues.** ## Use Cocoapods? From d7b831557ee3a2c8b78cec14be4562de5f68b7c7 Mon Sep 17 00:00:00 2001 From: Daniel Berger Date: Fri, 1 Sep 2023 17:58:03 +0000 Subject: [PATCH 2/3] Pull request #909: Updated package.swift Merge in MOBILE-SDK/app_mobile-sdk-ios from updated_package.swift to develop Squashed commit of the following: commit 27ffeb7e2437a7af097794f502b781370b26357b Author: Daniel Berger Date: Fri Sep 1 12:16:35 2023 -0400 removed package.resolved commit 0e481244732f36cc07d10a73d58870d20e0c78b5 Author: Daniel Berger Date: Fri Sep 1 11:46:44 2023 -0400 updated package.swift file --- Package.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 53a6f505..90056e8f 100644 --- a/Package.swift +++ b/Package.swift @@ -29,7 +29,7 @@ let package = Package( targets: [ .binaryTarget( name: "OMSDK_Appnexus", - path: "sdk/sourcefiles/Viewability/OMSDK_Appnexus.xcframework" + path: "sdk/sourcefiles/Viewability/dynamic_framework/OMSDK_Appnexus.xcframework" ), .target( name: "AppNexusSDK", @@ -37,7 +37,9 @@ let package = Package( path: "sdk/sourcefiles", exclude: [ "Resources/Info.plist", - "Viewability/OMSDK_Appnexus.xcframework", + "Resources/ANSDKResources.bundle", + "Viewability/dynamic_framework/OMSDK_Appnexus.xcframework", + "Viewability/static_framework/OMSDK-Static_Appnexus.xcframework", "macOS/" ], resources: [ From 1ae131c3c2c5e549f663ffd12efbef81a2c081df Mon Sep 17 00:00:00 2001 From: ksubramanian Date: Fri, 1 Sep 2023 14:34:44 -0400 Subject: [PATCH 3/3] Changes for HotFix Release v8.8.1 --- AppNexusSDK.podspec | 2 +- RELEASE-NOTES.md | 6 ++++++ sdk/AppNexusSDK.xcodeproj/project.pbxproj | 16 ++++++++-------- sdk/sourcefiles/internal/ANGlobal.h | 4 ++-- 4 files changed, 17 insertions(+), 11 deletions(-) diff --git a/AppNexusSDK.podspec b/AppNexusSDK.podspec index ee6ace28..92904f59 100644 --- a/AppNexusSDK.podspec +++ b/AppNexusSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "AppNexusSDK" - s.version = "8.8.0" + s.version = "8.8.1" s.platform = :ios, "11.0" s.summary = "AppNexus iOS Mobile Advertising SDK" diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index bd3487f9..fae61dfc 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,9 @@ +## 8.8.1 + +### Improvement/ Bug Fixes ++ MS-5384 Addressed issue while installing SDK via Swift Package Manager ++ MS-5385 Addressed issue while installing SDK via Cocoapods + ## 8.8.0 ### New Features diff --git a/sdk/AppNexusSDK.xcodeproj/project.pbxproj b/sdk/AppNexusSDK.xcodeproj/project.pbxproj index bc7d83a0..56acad53 100644 --- a/sdk/AppNexusSDK.xcodeproj/project.pbxproj +++ b/sdk/AppNexusSDK.xcodeproj/project.pbxproj @@ -2241,7 +2241,7 @@ "\"$(SRCROOT)/sourcefiles/Viewability/static_framework/OMSDK_Appnexus.xcframework/ios-arm64_armv7/\"", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 8.8.0; + MARKETING_VERSION = 8.8.1; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; OTHER_LDFLAGS = "-ObjC"; @@ -2294,7 +2294,7 @@ "\"$(SRCROOT)/sourcefiles/Viewability/static_framework/OMSDK_Appnexus.xcframework/ios-arm64_armv7/\"", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 8.8.0; + MARKETING_VERSION = 8.8.1; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; OTHER_LDFLAGS = "-ObjC"; @@ -2340,7 +2340,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.14; - MARKETING_VERSION = 8.8.0; + MARKETING_VERSION = 8.8.1; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = Xandr.AppNexusNativeMacOSSDK; @@ -2386,7 +2386,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.14; - MARKETING_VERSION = 8.8.0; + MARKETING_VERSION = 8.8.1; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = Xandr.AppNexusNativeMacOSSDK; @@ -2432,7 +2432,7 @@ "@loader_path/Frameworks", ); LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 8.8.0; + MARKETING_VERSION = 8.8.1; MTL_ENABLE_DEBUG_INFO = YES; PRODUCT_BUNDLE_IDENTIFIER = "corp.appnexus.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -2474,7 +2474,7 @@ "@loader_path/Frameworks", ); LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 8.8.0; + MARKETING_VERSION = 8.8.1; MTL_ENABLE_DEBUG_INFO = NO; PRODUCT_BUNDLE_IDENTIFIER = "corp.appnexus.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -2640,7 +2640,7 @@ "@loader_path/Frameworks", ); LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 8.8.0; + MARKETING_VERSION = 8.8.1; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = corp.appnexus.AppNexusSDK; @@ -2691,7 +2691,7 @@ "@loader_path/Frameworks", ); LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 8.8.0; + MARKETING_VERSION = 8.8.1; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = corp.appnexus.AppNexusSDK; diff --git a/sdk/sourcefiles/internal/ANGlobal.h b/sdk/sourcefiles/internal/ANGlobal.h index a702a3f7..49e378ca 100644 --- a/sdk/sourcefiles/internal/ANGlobal.h +++ b/sdk/sourcefiles/internal/ANGlobal.h @@ -29,9 +29,9 @@ #if !APPNEXUS_NATIVE_MACOS_SDK - #define AN_SDK_VERSION @"8.8.0" + #define AN_SDK_VERSION @"8.8.1" #else - #define AN_SDK_VERSION @"8.8.0-mac" + #define AN_SDK_VERSION @"8.8.1-mac" #endif