Skip to content

Commit

Permalink
TencentGDT/4.14.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins committed Jul 13, 2023
1 parent 0fd75af commit 92922be
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
17 changes: 8 additions & 9 deletions TencentGDT/AppLovinMediationTencentGDTAdapter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|

s.authors = 'AppLovin Corporation'
s.name = 'AppLovinMediationTencentGDTAdapter'
s.version = '4.14.31.0'
s.version = '4.14.32.0'
s.platform = :ios, '9.0'
s.summary = 'TencentGDT adapter used for mediation with the AppLovin MAX SDK'
s.homepage = "https://github.com/CocoaPods/Specs/search?o=desc&q=#{s.name}&s=indexed"
Expand All @@ -19,22 +19,21 @@ LICENSE
}

s.source =
{
:http => "https://artifacts.applovin.com/ios/com/applovin/mediation/tencentgdt-adapter/#{s.name}-#{s.version}.zip",
:type => 'zip'
{
:http => "#{s.version}" =~ /beta/ ?
"https://artifacts.applovin.com/ios/com/applovin/mediation/beta/tencentgdt-adapter/#{s.name}-#{s.version}.zip" :
"https://artifacts.applovin.com/ios/com/applovin/mediation/tencentgdt-adapter/#{s.name}-#{s.version}.zip",
:type => 'zip'
}

s.vendored_frameworks = "#{s.name}-#{s.version}/#{s.name}.xcframework"

s.dependency 'GDTMobSDK', '= 4.14.31'
s.dependency 'GDTMobSDK', '= 4.14.32'
s.dependency 'AppLovinSDK'

s.pod_target_xcconfig =
{
'VALID_ARCHS' => 'arm64 arm64e armv7 armv7s x86_64',
'VALID_ARCHS[sdk=iphoneos*]' => 'arm64 arm64e armv7 armv7s',
'VALID_ARCHS[sdk=iphonesimulator*]' => 'arm64 arm64e x86_64',
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}

s.description = <<-DESC
Expand Down
4 changes: 4 additions & 0 deletions TencentGDT/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 4.14.32.0
* Certified with TencentGDT SDK 4.14.32.
* Updated minimum Xcode requirement to 14.0.

## 4.14.31.0
* Certified with TencentGDT SDK 4.14.31.
* Fixed potential memory leaks by clearing delegates in `destroy:` method.
Expand Down
4 changes: 0 additions & 4 deletions TencentGDT/TencentGDTAdapter.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,6 @@
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
VALID_ARCHS = "$(ARCHS_STANDARD)";
};
name = Debug;
};
Expand Down Expand Up @@ -335,7 +334,6 @@
ONLY_ACTIVE_ARCH = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
VALID_ARCHS = "$(ARCHS_STANDARD)";
};
name = Release;
};
Expand All @@ -348,7 +346,6 @@
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = X8JXXK4FF5;
ENABLE_BITCODE = NO;
EXCLUDED_ARCHS = i386;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "$(inherited)";
Expand All @@ -367,7 +364,6 @@
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = X8JXXK4FF5;
ENABLE_BITCODE = NO;
EXCLUDED_ARCHS = i386;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "$(inherited)";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#import "GDTUnifiedInterstitialAd.h"
#import "GDTRewardVideoAd.h"

#define ADAPTER_VERSION @"4.14.31.0"
#define ADAPTER_VERSION @"4.14.32.0"

/**
* Interstitial Delegate
Expand Down

0 comments on commit 92922be

Please sign in to comment.