Skip to content

Commit ede1862

Browse files
author
J. Doe (https://devcenter.bitrise.io/builds/setting-your-git-credentials-on-build-machines/)
committed
Release 4.6.0
1 parent 69b425f commit ede1862

19 files changed

+156
-31417
lines changed

CHANGELOG.md

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Changelog
2+
3+
### v4.6.0
4+
_2020-02-06_
5+
- Final Validation Tool
6+
- Fix some issues which could cause crashes in particular conditions
7+
8+
### v4.5.0
9+
_2020-01-03_
10+
- Support US Privacy String (CCPA) [IAB documentation](https://iabtechlab.com/wp-content/uploads/2019/11/U.S.-Privacy-String-v1.0-IAB-Tech-Lab.pdf)
11+
- Fix and Improvements
12+
13+
14+
### v4.4.0
15+
_2019-11-18_
16+
- Update OM SDK and manage display visibility
17+
18+
### v4.3.5
19+
_2019-11-06_
20+
- Fix custom operator declaration
21+
22+
### v4.3.4
23+
_2019-11-05_
24+
- Upgrade scroller behavior.
25+
- enableLigtEndScreen is now deprecated in Settings use enableLightEndScreen instead.
26+
- Bug fix and performance improvement.
27+
28+
### v4.3.2
29+
_2019-10-11_
30+
- setAdContainerView is now deprecated.
31+
- Bug fix and performance improvement.
32+
33+
### v4.3.1
34+
_2019-09-20_
35+
- Fixing for AdMob & MoPub adapters compatibility
36+
37+
### v4.3.0
38+
_2019-09-19_
39+
- `adContainerId` is now **deprecated** on mediation adapter.
40+
- Take care of low battery mode
41+
- **iOS 13** support
42+
- Fix and minors improvements.
43+
44+
### v4.2.6
45+
_2019-06-11_
46+
- Fix bug that could in rare case put a some vpaid creative in the left corner of the app.
47+
- Fix click not working on some creative.
48+
- Minor improvements
49+
50+
### v4.2.5
51+
_2019-04-15_
52+
- HTTPS is now forced by default for all Teads trackings
53+
- Add TeadsWebViewClientOverride to let the host application handle the Chrome crash.
54+
- Fix and minors improvements
55+
56+
### v4.2.4
57+
_2019-04-12_
58+
- Remove geolocation from the SDK
59+
- Generate SDK with new Xcode you can get a version generated by the previous SDK by using TeadsSDKPrevious in cocoapod or downloading it in our Previous folder in this repo.
60+
61+
### v4.2.3
62+
_2019-03-12_
63+
- fix issue with vpaid ad issue in some cases
64+
65+
### v4.2.2
66+
_2019-02-28_
67+
- Performance improvements
68+
69+
### v4.2.1
70+
_2019-02-21_
71+
- improve memory management
72+
- add method to dismiss fullscreen
73+
74+
### v4.2.0
75+
_2019-02-14_
76+
***New feature***
77+
- add InRead class for clarity
78+
- expose SDK version `Teads.sdkVersion`
79+
- add visibility overlay logs
80+
- deprecate slotReached
81+
- setAdContainerView for AdView to check to visibility on the slot. CustomAdView are checking the slot visibility on itself by default.
82+
83+
***Breaking changes***
84+
- change delegate adView class
85+
86+
Example:
87+
88+
Old
89+
``` swift
90+
func didReceiveAd(_ ad: TFACustomAdView, adRatio: CGFloat) {}
91+
```
92+
New
93+
``` swift
94+
func didReceiveAd(_ ad: TFAAdView, adRatio: CGFloat) {}
95+
```
96+
97+
### v4.1.6
98+
_2019-12-05_
99+
- Performance improvements
100+
101+
### v4.1.5
102+
_2019-11-15_
103+
- Improve SDK performance
104+
105+
### v4.1.4
106+
_2019-10-31_
107+
- Fix ios 12 tracking issues in some case
108+
109+
### v4.1.3
110+
_2019-10-31_
111+
- Minor fix
112+
113+
### v4.1.2
114+
_2019-10-23_
115+
- Fix tracking issue on iOS 12
116+
- Add audio session handling
117+
- Fix bug in circuit blocker
118+
119+
### v4.1.1
120+
_2019-10-09_
121+
- Minor update
122+
123+
### v4.0.10
124+
_2019-10-09_
125+
- Fix minor bugs
126+
127+
### v4.0.9
128+
_2019-08-29_
129+
- GDPR support
130+
- Improvements and bug fixes
131+
- Dedicated build to support Xcode 10 & Swift 4.2
132+

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ Teads allows you to integrate a single SDK into your app, and serve premium bran
77

88
Clone this repository, open it with Xcode, and run project.
99

10-
## Download the Teads SDK iOS library
10+
## Install the Teads SDK iOS library
1111

1212
Teads SDK is currently distributed through CocoaPods. It include everything you need to serve "outstream" video ads.
1313

14+
### Cocoapods
15+
1416
```
1517
target 'YourProject' do
16-
pod 'TeadsSDK', '4.1.2'
18+
pod 'TeadsSDK', '4.6.0'
1719
end
1820
```
1921

@@ -23,6 +25,14 @@ In terminal in the directory containing your project's `.xcodeproj` file and the
2325
$ pod install --repo-update
2426
```
2527

28+
### Carthage
29+
30+
[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate TeadsSDK into your Xcode project using Carthage, specify it in your `Cartfile`:
31+
32+
```ogdl
33+
github "teads/TeadsSDK-iOS" "4.6.0"
34+
```
35+
2636
## Integration Documentation
2737

2838
Integration instructions are available on [Teads SDK Documentation](https://support.teads.tv/support/solutions/articles/36000165909).

0 commit comments

Comments
 (0)