Skip to content

Commit d0f2742

Browse files
author
Nikolaï Roycourt
committed
Update SDK to 2.4.3
1 parent 151d71d commit d0f2742

File tree

10 files changed

+25
-6
lines changed

10 files changed

+25
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
v2.4.3
4+
- New method to call if your app uses specific AVAudioSessionCategory : `- (void)requiredAVAudioSession:(NSString *)category`
5+
36
v2.4.2
47
- Fixed an issue causing crash when user arrives on view and immediately goes back
58
- Internal improvements

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Teads iOS SDK
22

33
<p align="center">
4-
<img src="https://jenkins.teads.net/job/TeadsSDK-iOS_master/badge/icon" alt="Build Status"/>
4+
<img src="https://jenkins.teads.net/buildStatus/icon?job=TeadsSDK-iOS_master" alt="Build Status"/>
55
<img src="https://img.shields.io/badge/platform-iOS%207%2B-blue.svg?style=flat" alt="Platform: iOS 7+"/>
66
<a href="https://cocoapods.org/?q=TeadsSDK"><img src="https://img.shields.io/cocoapods/v/TeadsSDK.svg" alt="CocoaPods compatible" /></a>
77
</p>

TeadsSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "TeadsSDK"
4-
s.version = "2.4.2"
4+
s.version = "2.4.3"
55
s.summary = "Teads' iOS SDK"
66

77
s.description = <<-DESC
4 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.
-2 Bytes
Binary file not shown.
4 Bytes
Binary file not shown.

TeadsSDKDemo/TeadsSDK.framework/Versions/A/Headers/TeadsAd.h

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -287,25 +287,33 @@ typedef NS_ENUM(NSInteger, TeadsAdPlayerColorMode) {
287287
/*
288288
* Inform TeadsAd that its parent view controller did disappear
289289
*
290-
* @param viewController : the view controller that will display the Teads Ad
290+
* @param viewController The view controller that will display the Teads Ad
291291
* @discussion This method has to be called in your view controller -viewDidDisappear: method
292292
*
293293
*/
294294
- (void)viewControllerDisappeared:(UIViewController *)viewController;
295295

296-
/**
296+
/*
297297
* Get the expanded frame of Teads Ad.
298298
*/
299299
- (CGRect)expandedFrame;
300-
/**
300+
/*
301301
* Get expand animation duration
302302
*/
303303
- (float)expandAnimationDuration;
304-
/**
304+
/*
305305
* Get collapse animation duration
306306
*/
307307
- (float)collapseAnimationDuration;
308308

309+
/*
310+
* Inform TeadsAd that your app needs a specific AVAudioSession category
311+
*
312+
* @param category An AVAudioSessionCategory (AVAudioSessionCategoryAmbient, AVAudioSessionCategoryRecord, etc...)
313+
* @discussion Calling this method is optionnal, use it only if needed
314+
*/
315+
- (void)requiredAVAudioSession:(NSString *)category;
316+
309317
#pragma mark Method for inRead in TableView
310318

311319
/**

TeadsSDKDemo/TeadsSDK.framework/Versions/A/Headers/TeadsVideo.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,14 @@ __attribute__((deprecated ("use TeadsAd")))
293293
*/
294294
- (float)collapseAnimationDuration;
295295

296+
/*
297+
* Inform TeadsVideo that your app needs a specific AVAudioSession category
298+
*
299+
* @param category An AVAudioSessionCategory (AVAudioSessionCategoryAmbient, AVAudioSessionCategoryRecord, etc...)
300+
* @discussion Calling this method is optionnal, use it only if needed
301+
*/
302+
- (void)requiredAVAudioSession:(NSString *)category;
303+
296304
#pragma mark Method for inRead in TableView
297305

298306
/**
103 KB
Binary file not shown.

0 commit comments

Comments
 (0)