Skip to content

Commit

Permalink
SDK v7.6.1
Browse files Browse the repository at this point in the history
* commit 'e726c3cef476da0df5b6301b1cfd18153ac4a2aa':
  Added Release notes v7.6.1
  v7.6.1
  Rollback App Tracking Transparency
  • Loading branch information
asharmaa committed Sep 4, 2020
2 parents d45ebb1 + e726c3c commit 831e123
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 24 deletions.
2 changes: 1 addition & 1 deletion AppNexusSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "AppNexusSDK"
s.version = "7.6"
s.version = "7.6.1"
s.platform = :ios, "9.0"

s.summary = "AppNexus iOS Mobile Advertising SDK"
Expand Down
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 7.6.1
### Improvements/Bug Fixes
+ MS-4520: Rollback iOS 14 AppTrackingTransparency changes (Please refer https://wiki.xandr.com/x/3Ie1Bg for the latest updates on Xandr Mobile SDK's support for iOS 14)

## 7.6
### New Features
+ MS-4433: Support for iOS 14 [https://wiki.xandr.com/x/3Ie1Bg]
Expand Down
8 changes: 4 additions & 4 deletions sdk/AppNexusSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1526,7 +1526,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = "";
MARKETING_VERSION = 7.6;
MARKETING_VERSION = 7.6.1;
MTL_ENABLE_DEBUG_INFO = YES;
PRODUCT_BUNDLE_IDENTIFIER = "corp.appnexus.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -1563,7 +1563,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = "";
MARKETING_VERSION = 7.6;
MARKETING_VERSION = 7.6.1;
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_BUNDLE_IDENTIFIER = "corp.appnexus.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -1715,7 +1715,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = "";
MARKETING_VERSION = 7.6;
MARKETING_VERSION = 7.6.1;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.appnexus.AppNexusNativeSDK;
Expand Down Expand Up @@ -1760,7 +1760,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = "";
MARKETING_VERSION = 7.6;
MARKETING_VERSION = 7.6.1;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.appnexus.AppNexusNativeSDK;
Expand Down
2 changes: 1 addition & 1 deletion sdk/sourcefiles/internal/ANGlobal.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#define AN_ERROR_TABLE @"errors"

#define AN_DEFAULT_PLACEMENT_ID @"default_placement_id"
#define AN_SDK_VERSION @"7.6"
#define AN_SDK_VERSION @"7.6.1"


#define APPNEXUS_BANNER_SIZE CGSizeMake(320, 50)
Expand Down
13 changes: 1 addition & 12 deletions sdk/sourcefiles/internal/ANGlobal.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@
#import "ANOMIDImplementation.h"
#import "ANWebView.h"
#import "ANGDPRSettings.h"
#if __has_include(<AppTrackingTransparency/AppTrackingTransparency.h>)
#import <AppTrackingTransparency/AppTrackingTransparency.h>
#endif


NSString * __nonnull const ANInternalDelgateTagKeyPrimarySize = @"ANInternalDelgateTagKeyPrimarySize";
NSString * __nonnull const ANInternalDelegateTagKeySizes = @"ANInternalDelegateTagKeySizes";
Expand Down Expand Up @@ -57,15 +55,6 @@ BOOL ANAdvertisingTrackingEnabled() {
// - Estimating number of unique users
// - Security and fraud detection
// - Debugging
if (@available(iOS 14, *)) {
#if __has_include(<AppTrackingTransparency/AppTrackingTransparency.h>)
if ([ATTrackingManager trackingAuthorizationStatus] == ATTrackingManagerAuthorizationStatusAuthorized){
return true;
}else{
return false;
}
#endif
}
return [ASIdentifierManager sharedManager].isAdvertisingTrackingEnabled;
}

Expand Down
7 changes: 1 addition & 6 deletions tests/UnitTestApp/UnitTestApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -397,10 +397,10 @@
0EEFE1F8220098BD002B5F5F /* ANMockMediationAdapterLoadThenFail.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEFE1F7220098BD002B5F5F /* ANMockMediationAdapterLoadThenFail.m */; };
0EEFE1FB220098C9002B5F5F /* ANMockMediationAdapterLoadAndHitOtherCallbacks.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEFE1FA220098C9002B5F5F /* ANMockMediationAdapterLoadAndHitOtherCallbacks.m */; };
0EEFE1FD22009CDB002B5F5F /* OMID_TestResponse.json in Resources */ = {isa = PBXBuildFile; fileRef = 0EEFE1FC22009CDB002B5F5F /* OMID_TestResponse.json */; };
0EFE016F2498473D00284F49 /* TestANCSRUniversalFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EBD6924336111001A30D8 /* TestANCSRUniversalFetcher.m */; };
3812956C24AA1B4000116AAB /* CSR_Facebook_Banner_Native_AdDidLogImpression.json in Resources */ = {isa = PBXBuildFile; fileRef = 3812956A24AA1B4000116AAB /* CSR_Facebook_Banner_Native_AdDidLogImpression.json */; };
3812956E24AA1E7000116AAB /* ANNativeAdDidLogImpressionAPITestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = 3812956D24AA1E7000116AAB /* ANNativeAdDidLogImpressionAPITestCase.m */; };
3812957024AA255900116AAB /* SuccessfulNativeStandardAdResponse.json in Resources */ = {isa = PBXBuildFile; fileRef = 0EEFE17B22007497002B5F5F /* SuccessfulNativeStandardAdResponse.json */; };
0EFE016F2498473D00284F49 /* TestANCSRUniversalFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EBD6924336111001A30D8 /* TestANCSRUniversalFetcher.m */; };
38904C4424E1309B00A472CC /* ANAdResponseCodeTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = 38904C4324E1309B00A472CC /* ANAdResponseCodeTestCase.m */; };
38A8E164248A6A7E0081E9CD /* CSR_Facebook_Banner_Native_withError_1002.json in Resources */ = {isa = PBXBuildFile; fileRef = 38A8E15B248A6A7C0081E9CD /* CSR_Facebook_Banner_Native_withError_1002.json */; };
38A8E165248A6A7E0081E9CD /* CSR_Facebook_Banner_Native_withError_1012.json in Resources */ = {isa = PBXBuildFile; fileRef = 38A8E15D248A6A7C0081E9CD /* CSR_Facebook_Banner_Native_withError_1012.json */; };
Expand Down Expand Up @@ -437,8 +437,6 @@
607BB64723F32860002A0F57 /* testMARCombinationTwoRTBNative.json in Resources */ = {isa = PBXBuildFile; fileRef = 0E2B4BAC23C4AD6E002AFBD8 /* testMARCombinationTwoRTBNative.json */; };
607BB64823F32936002A0F57 /* ANNativeAdRequest+ANTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEFE19922008124002B5F5F /* ANNativeAdRequest+ANTest.m */; };
607BB65B240461F3002A0F57 /* GoogleMobileAds.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 607BB65A240461F3002A0F57 /* GoogleMobileAds.framework */; };
607BB65C240461F3002A0F57 /* GoogleMobileAds.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 607BB65A240461F3002A0F57 /* GoogleMobileAds.framework */; };
607BB65D240461F3002A0F57 /* GoogleMobileAds.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 607BB65A240461F3002A0F57 /* GoogleMobileAds.framework */; };
60D39E46226F69A80029F741 /* ANVideoPlayerSettingsTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = 60D39E44226F69A80029F741 /* ANVideoPlayerSettingsTestCase.m */; };
60F8A7FF23280BF10030D53D /* ANReachability+ANTest.h in Sources */ = {isa = PBXBuildFile; fileRef = 0E8C971F21FF32EB005D1F0E /* ANReachability+ANTest.h */; };
60F8A80023280C2A0030D53D /* ANReachability+ANTest.h in Sources */ = {isa = PBXBuildFile; fileRef = 0E8C971F21FF32EB005D1F0E /* ANReachability+ANTest.h */; };
Expand Down Expand Up @@ -1117,8 +1115,6 @@
files = (
0E6B7E4522D8DE01005D069E /* AppNexusSDK.framework in Frameworks */,
0E5529BA2419228C00D50C51 /* FBAudienceNetwork.framework in Frameworks */,
607BB65C240461F3002A0F57 /* GoogleMobileAds.framework in Frameworks */,
607BB65C240461F3002A0F57 /* GoogleMobileAds.framework in Frameworks */,
0E56C83521F8B2A900ADE6E1 /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand All @@ -1128,7 +1124,6 @@
buildActionMask = 2147483647;
files = (
0E6B7E4622D8DE06005D069E /* AppNexusSDK.framework in Frameworks */,
607BB65D240461F3002A0F57 /* GoogleMobileAds.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down

0 comments on commit 831e123

Please sign in to comment.