Skip to content

Commit ef9bf68

Browse files
runnerrunner
authored andcommitted
Release new version: 5.0.25
1 parent 501afaf commit ef9bf68

File tree

17 files changed

+30
-30
lines changed

17 files changed

+30
-30
lines changed
0 Bytes
Binary file not shown.
80.3 KB
Binary file not shown.
0 Bytes
Binary file not shown.
128 Bytes
Binary file not shown.

Frameworks/TeadsSDK.xcframework/ios-arm64_i386_x86_64-simulator/TeadsSDK.framework/_CodeSignature/CodeResources

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</data>
1919
<key>Info.plist</key>
2020
<data>
21-
Mu4XLGeBFFK+GgILocFePbrfKBk=
21+
lYmBQ1dwI/7/6pw+8Zxz1wkAKKg=
2222
</data>
2323
<key>Modules/TeadsSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
2424
<data>
@@ -30,7 +30,7 @@
3030
</data>
3131
<key>Modules/TeadsSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
3232
<data>
33-
/CUnKRa5lDwa4ldXjmVjqZfUlUA=
33+
nE5Ltqb7ODeDeNO2A5sX709IDdE=
3434
</data>
3535
<key>Modules/TeadsSDK.swiftmodule/i386-apple-ios-simulator.swiftdoc</key>
3636
<data>
@@ -42,7 +42,7 @@
4242
</data>
4343
<key>Modules/TeadsSDK.swiftmodule/i386-apple-ios-simulator.swiftmodule</key>
4444
<data>
45-
TsU/C4Ya/1I7yw57R7Bo1LlEfy4=
45+
jC7xg/x12iMnJrEhkzCoq8OHK90=
4646
</data>
4747
<key>Modules/TeadsSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
4848
<data>
@@ -54,7 +54,7 @@
5454
</data>
5555
<key>Modules/TeadsSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
5656
<data>
57-
SGR1P7dDRRRCgK4WFpacqrhPG/8=
57+
zR1LiSh9bTQZpI5oV00dry2GL8g=
5858
</data>
5959
<key>Modules/module.modulemap</key>
6060
<data>
@@ -138,11 +138,11 @@
138138
<dict>
139139
<key>hash</key>
140140
<data>
141-
/CUnKRa5lDwa4ldXjmVjqZfUlUA=
141+
nE5Ltqb7ODeDeNO2A5sX709IDdE=
142142
</data>
143143
<key>hash2</key>
144144
<data>
145-
DSXQyy3Aor3uSWTfe1VrVDktUrVksZ5+wTyUNqptHU8=
145+
xU0ID8O03r6WP+zkXeIN6Q637IXTriLndL0bYs6Zm98=
146146
</data>
147147
</dict>
148148
<key>Modules/TeadsSDK.swiftmodule/i386-apple-ios-simulator.swiftdoc</key>
@@ -171,11 +171,11 @@
171171
<dict>
172172
<key>hash</key>
173173
<data>
174-
TsU/C4Ya/1I7yw57R7Bo1LlEfy4=
174+
jC7xg/x12iMnJrEhkzCoq8OHK90=
175175
</data>
176176
<key>hash2</key>
177177
<data>
178-
xIDXjSkddlR34DtweRfVVT9LZoiIU8//7ghK7QVNCJ4=
178+
K9ACiId/2NhunL4WYZUrFBiWDQGZLNabiGMDR6CciIo=
179179
</data>
180180
</dict>
181181
<key>Modules/TeadsSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
@@ -204,11 +204,11 @@
204204
<dict>
205205
<key>hash</key>
206206
<data>
207-
SGR1P7dDRRRCgK4WFpacqrhPG/8=
207+
zR1LiSh9bTQZpI5oV00dry2GL8g=
208208
</data>
209209
<key>hash2</key>
210210
<data>
211-
nshV/A4mXkAq0imk2NYYx9unlXATjNip7fiOuIjm9wc=
211+
YeyudFnYIuAwvPrv1cNyGBEyoq46Ezfifdi9kubpb/E=
212212
</data>
213213
</dict>
214214
<key>Modules/module.modulemap</key>

MediationAdapters/Common/CGFloat-extensions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ import UIKit
99

1010
extension CGFloat {
1111
var positive: CGFloat? {
12-
return self > 0 ? self : nil
12+
self > 0 ? self : nil
1313
}
1414
}

MediationAdapters/Common/Helper.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import UIKit
1010

1111
public enum Helper {
1212
public static func bannerSize(for width: CGFloat) -> CGSize {
13-
return CGSize(width: width > 0 ? width : 300, height: width / (16 / 9))
13+
CGSize(width: width > 0 ? width : 300, height: width / (16 / 9))
1414
}
1515
}
1616

MediationAdapters/Common/TeadsAdapterErrorCode.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ extension TeadsAdapterErrorCode: CustomNSError {
2727
}
2828

2929
public static var errorDomain: String {
30-
return "tv.teads.adapter"
30+
"tv.teads.adapter"
3131
}
3232

3333
public var errorCode: Int {
34-
return rawValue
34+
rawValue
3535
}
3636

3737
public var errorUserInfo: [String: Any] {
38-
return [NSLocalizedDescriptionKey: localizedDescription, NSLocalizedFailureReasonErrorKey: localizedDescription]
38+
[NSLocalizedDescriptionKey: localizedDescription, NSLocalizedFailureReasonErrorKey: localizedDescription]
3939
}
4040
}

MediationAdapters/TeadsAppLovinAdapter/TeadsMediationAdapter.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ final class TeadsMediationAdapter: ALMediationAdapter {
3131
}
3232

3333
@objc override var sdkVersion: String {
34-
return Teads.sdkVersion
34+
Teads.sdkVersion
3535
}
3636

3737
@objc override var adapterVersion: String {
38-
return Teads.sdkVersion
38+
sdkVersion
3939
}
4040

4141
@objc override var isBeta: Bool {
42-
return false
42+
false
4343
}
4444

4545
override func destroy() {
@@ -185,7 +185,7 @@ extension TeadsMediationAdapter: TeadsNativeAdPlacementDelegate {
185185

186186
extension TeadsMediationAdapter: TeadsAdDelegate {
187187
func willPresentModalView(ad _: TeadsAd) -> UIViewController? {
188-
return ALUtils.topViewControllerFromKeyWindow()
188+
ALUtils.topViewControllerFromKeyWindow()
189189
}
190190

191191
func didRecordClick(ad _: TeadsAd) {

MediationAdapters/TeadsSASAdapter/TeadsSASAdapterHelper.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ struct ServerParameter: Codable {
5252
}
5353

5454
var adSettings: TeadsAdapterSettings {
55-
return TeadsSASAdapterHelper.stringToAdSettings(adSettingsString: teadsAdSettingsKey) ?? TeadsAdapterSettings()
55+
TeadsSASAdapterHelper.stringToAdSettings(adSettingsString: teadsAdSettingsKey) ?? TeadsAdapterSettings()
5656
}
5757
}

0 commit comments

Comments
 (0)