Skip to content

Commit 3945d8a

Browse files
committed
upgrade dependencies to latest versions, including cocoapods
disable auto refresh on mopub
1 parent 812584b commit 3945d8a

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed

Podfile.lock

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PODS:
2-
- Google-Mobile-Ads-SDK (7.66.0):
2+
- Google-Mobile-Ads-SDK (7.67.0):
33
- GoogleAppMeasurement (~> 6.0)
44
- GoogleUserMessagingPlatform (~> 1.1)
5-
- GoogleAppMeasurement (6.8.3):
5+
- GoogleAppMeasurement (6.9.0):
66
- GoogleUtilities/AppDelegateSwizzler (~> 6.7)
77
- GoogleUtilities/MethodSwizzler (~> 6.7)
88
- GoogleUtilities/Network (~> 6.7)
@@ -11,7 +11,7 @@ PODS:
1111
- GoogleMobileAdsMediationTeads (4.7.8):
1212
- Google-Mobile-Ads-SDK (>= 7.59)
1313
- TeadsSDK (= 4.7.8)
14-
- GoogleUserMessagingPlatform (1.2.0)
14+
- GoogleUserMessagingPlatform (1.3.0)
1515
- GoogleUtilities/AppDelegateSwizzler (6.7.2):
1616
- GoogleUtilities/Environment
1717
- GoogleUtilities/Logger
@@ -29,13 +29,13 @@ PODS:
2929
- "GoogleUtilities/NSData+zlib (6.7.2)"
3030
- GoogleUtilities/Reachability (6.7.2):
3131
- GoogleUtilities/Logger
32-
- mopub-ios-sdk (5.14.0):
33-
- mopub-ios-sdk/MoPubSDK (= 5.14.0)
34-
- mopub-ios-sdk/Core (5.14.0)
35-
- mopub-ios-sdk/MoPubSDK (5.14.0):
32+
- mopub-ios-sdk (5.14.1):
33+
- mopub-ios-sdk/MoPubSDK (= 5.14.1)
34+
- mopub-ios-sdk/Core (5.14.1)
35+
- mopub-ios-sdk/MoPubSDK (5.14.1):
3636
- mopub-ios-sdk/Core
3737
- mopub-ios-sdk/NativeAds
38-
- mopub-ios-sdk/NativeAds (5.14.0):
38+
- mopub-ios-sdk/NativeAds (5.14.1):
3939
- mopub-ios-sdk/Core
4040
- MoPub-Teads-Adapters (4.7.8):
4141
- mopub-ios-sdk (>= 5.13)
@@ -45,7 +45,7 @@ PODS:
4545
- nanopb/encode (= 1.30906.0)
4646
- nanopb/decode (1.30906.0)
4747
- nanopb/encode (1.30906.0)
48-
- PromisesObjC (1.2.10)
48+
- PromisesObjC (1.2.11)
4949
- TeadsSDK (4.7.8)
5050

5151
DEPENDENCIES:
@@ -66,17 +66,17 @@ SPEC REPOS:
6666
- TeadsSDK
6767

6868
SPEC CHECKSUMS:
69-
Google-Mobile-Ads-SDK: 7d7074359c040f5add4e0963bf860e14690060d0
70-
GoogleAppMeasurement: 966e88df9d19c15715137bb2ddaf52373f111436
69+
Google-Mobile-Ads-SDK: 8b58584890539de4527c47ef01e4da941a10bc8a
70+
GoogleAppMeasurement: a6a3a066369828db64eda428cb2856dc1cdc7c4e
7171
GoogleMobileAdsMediationTeads: 1c25b8ad9860361c4223d55079cab8931f633ce8
72-
GoogleUserMessagingPlatform: c85530d930ba509583aa5a6d50a10aca22cf8502
72+
GoogleUserMessagingPlatform: 1d4b6946710d18cec34742054092e2c2bddae61f
7373
GoogleUtilities: 7f2f5a07f888cdb145101d6042bc4422f57e70b3
74-
mopub-ios-sdk: c7d3d8f748b187d94f04c03386a65a782ffc0161
74+
mopub-ios-sdk: b60afe997d7631e6bea6e1ae8a3d3727be9cd171
7575
MoPub-Teads-Adapters: db8cc7de1472503a9917a904f08fc6097601518d
7676
nanopb: 59317e09cf1f1a0af72f12af412d54edf52603fc
77-
PromisesObjC: b14b1c6b68e306650688599de8a45e49fae81151
77+
PromisesObjC: 8c196f5a328c2cba3e74624585467a557dcb482f
7878
TeadsSDK: 2cde69c4241cad99a56fb027ed7e6f93b4b60383
7979

8080
PODFILE CHECKSUM: 5d306228607ef47a7e8b6d9d696e1cff2de6baa5
8181

82-
COCOAPODS: 1.9.1
82+
COCOAPODS: 1.10.0

TeadsDemoApp/Controllers/InRead/Mopub/ScrollView/InReadMopubScrollViewController.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class InReadMopubScrollViewController: TeadsViewController {
4848
try? settings.subscribeAdResizeDelegate(self, forAdView: bannerView)
4949
}
5050
bannerView.register(teadsAdSettings: settings)
51+
bannerView.stopAutomaticallyRefreshingContents() //usefull to perform validationTool https://support.teads.tv/support/solutions/articles/36000209100-validation-tool
5152
bannerView.loadAd(withMaxAdSize: kMPPresetMaxAdSizeMatchFrame)
5253
addConstraints()
5354

TeadsDemoApp/Controllers/InRead/Mopub/TableView/InReadMopubTableViewController.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ class InReadMopubTableViewController: TeadsViewController {
5959
try? settings.subscribeAdResizeDelegate(self, forAdView: mopubAdView)
6060
}
6161
mopubAdView.register(teadsAdSettings: settings)
62+
mopubAdView.stopAutomaticallyRefreshingContents() //usefull to perform validationTool https://support.teads.tv/support/solutions/articles/36000209100-validation-tool
6263
mopubAdView.loadAd(withMaxAdSize: kMPPresetMaxAdSizeMatchFrame)
6364

6465
}

0 commit comments

Comments
 (0)