Skip to content

Commit 05890ac

Browse files
authored
Update GMA iOS Dependency to 9.7.0 (#1040)
Update the Google Mobile Ads dependency to 9.7.0. Fixed an ambiguous selector to in the AdView implementation on iOS.
1 parent c046c8a commit 05890ac

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

gma/integration_test/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use_frameworks! :linkage => :static
55

66
target 'integration_test' do
77
pod 'Firebase/Analytics', '9.3.0'
8-
pod 'Google-Mobile-Ads-SDK', '9.4.0'
8+
pod 'Google-Mobile-Ads-SDK', '9.7.0'
99
end
1010

1111
post_install do |installer|

gma/src/ios/ad_view_internal_ios.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
ad_load_callback_data_ = nil;
124124
} else {
125125
// Make the AdView ad request.
126-
[ad_view_ loadRequest:ad_request];
126+
[(GADBannerView*)ad_view_ loadRequest: ad_request];
127127
}
128128
});
129129
return future;

ios_pod/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use_frameworks!
55
target 'GetPods' do
66
pod 'Firebase/Core', '9.3.0'
77

8-
pod 'Google-Mobile-Ads-SDK', '9.4.0'
8+
pod 'Google-Mobile-Ads-SDK', '9.7.0'
99
pod 'Firebase/Analytics', '9.3.0'
1010
pod 'Firebase/Auth', '9.3.0'
1111
pod 'Firebase/Crashlytics', '9.3.0'

release_build_files/readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Firebase Functions | firebase_functions.xcframework
248248
Google Mobile Ads | firebase_gma.xcframework
249249
| | firebase.xcframework
250250
| | Firebase/Analytics Cocoapod (9.3.0)
251-
| | Google-Mobile-Ads-SDK Cocoapod (9.4.0)
251+
| | Google-Mobile-Ads-SDK Cocoapod (9.7.0)
252252
Firebase Installations | firebase_installations.xcframework
253253
| | firebase.xcframework
254254
| | FirebaseInstallations Cocoapod (9.3.0)
@@ -316,7 +316,7 @@ Firebase Functions | libfirebase_functions.a
316316
Google Mobile Ads | libfirebase_gma.a
317317
| | libfirebase_app.a
318318
| | Firebase/Analytics Cocoapod (9.3.0)
319-
| | Google-Mobile-Ads-SDK Cocoapod (9.4.0)
319+
| | Google-Mobile-Ads-SDK Cocoapod (9.7.0)
320320
Firebase Installations | libfirebase_installations.a
321321
| | libfirebase_app.a
322322
| | FirebaseInstallations Cocoapod (9.3.0)
@@ -639,6 +639,7 @@ code.
639639
- General (Desktop): Fixed an issue with embedded dependencies that could
640640
cause duplicate symbol linker errors in conjunction with other libraries
641641
([#989](https://github.com/firebase/firebase-cpp-sdk/issues/989)).
642+
- GMA (iOS): Updated iOS dependency to Google Mobile Ads SDK version 9.7.0.
642643

643644
### 9.3.0
644645
- Changes

0 commit comments

Comments
 (0)