Skip to content

Commit 9286833

Browse files
authored
Version bumping google_mobile_ads (#1230)
* Version bumping the main gma Flutter plugin
1 parent b345c18 commit 9286833

File tree

7 files changed

+16
-12
lines changed

7 files changed

+16
-12
lines changed

packages/google_mobile_ads/CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
## Next Version
1+
## 5.3.0
22
* Updated WebView Flutter Android dependency
3-
* Adds support for the new Debug Geography enums for the UMP SDK
3+
* Adds support for the new Debug Geography enums for the UMP SDK:
4+
* [Android](https://developers.google.com/admob/android/privacy/release-notes) UMP SDK version 3.1.0.
5+
* [iOS](https://developers.google.com/admob/ios/privacy/download#release_notes) UMP SDK version 2.7.0.
6+
* Updates GMA [iOS](https://developers.google.com/admob/ios/rel-notes) dependency to 11.13.0
7+
* Updates GMA [Android](https://developers.google.com/admob/android/rel-notes) dependency to 23.6.0
48

59
## 5.2.0
610
* Removed use of rootViewController for iOS GMA SDK which solved issues like

packages/google_mobile_ads/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ android {
3535
disable 'InvalidPackage'
3636
}
3737
dependencies {
38-
api 'com.google.android.gms:play-services-ads:23.4.0'
39-
implementation 'com.google.android.ump:user-messaging-platform:3.0.0'
38+
api 'com.google.android.gms:play-services-ads:23.6.0'
39+
implementation 'com.google.android.ump:user-messaging-platform:3.1.0'
4040
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4141
implementation 'androidx.lifecycle:lifecycle-process:2.6.2'
4242
implementation 'com.google.errorprone:error_prone_annotations:2.16'

packages/google_mobile_ads/android/src/main/java/io/flutter/plugins/googlemobileads/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/** Constants used in the plugin. */
1818
public class Constants {
1919
/** Version request agent. Should be bumped alongside plugin versions. */
20-
public static final String REQUEST_AGENT_PREFIX_VERSIONED = "Flutter-GMA-5.2.0";
20+
public static final String REQUEST_AGENT_PREFIX_VERSIONED = "Flutter-GMA-5.3.0";
2121
/** Prefix for news template */
2222
public static final String REQUEST_AGENT_NEWS_TEMPLATE_PREFIX = "News";
2323

packages/google_mobile_ads/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies:
2020
sdk: flutter
2121
google_mobile_ads:
2222
path: ../
23-
webview_flutter_android: ^4.3.0
23+
webview_flutter_android: ^4.3.1
2424
webview_flutter: ^4.10.0
2525

2626
dev_dependencies:

packages/google_mobile_ads/ios/Classes/FLTConstants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
// limitations under the License.
1414

1515
/** Versioned request agent string. */
16-
#define FLT_REQUEST_AGENT_VERSIONED @"Flutter-GMA-5.2.0"
16+
#define FLT_REQUEST_AGENT_VERSIONED @"Flutter-GMA-5.3.0"

packages/google_mobile_ads/ios/google_mobile_ads.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'google_mobile_ads'
6-
s.version = '5.2.0'
6+
s.version = '5.3.0'
77
s.summary = 'Google Mobile Ads plugin for Flutter.'
88
s.description = <<-DESC
99
Google Mobile Ads plugin for Flutter.
@@ -15,7 +15,7 @@ Google Mobile Ads plugin for Flutter.
1515
s.source_files = 'Classes/**/*.{h,m}'
1616
s.public_header_files = 'Classes/**/*.h'
1717
s.dependency 'Flutter'
18-
s.dependency 'Google-Mobile-Ads-SDK','~> 11.10.0'
18+
s.dependency 'Google-Mobile-Ads-SDK','~> 11.13.0'
1919
s.dependency 'webview_flutter_wkwebview'
2020
s.ios.deployment_target = '12.0'
2121
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS' => 'armv7 arm64 x86_64' }

packages/google_mobile_ads/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
name: google_mobile_ads
16-
version: 5.2.0
16+
version: 5.3.0
1717
description: Flutter plugin for Google Mobile Ads, supporting
1818
banner, interstitial (full-screen), rewarded and native ads
1919
repository: https://github.com/googleads/googleads-mobile-flutter/tree/main/packages/google_mobile_ads
@@ -31,7 +31,7 @@ dependencies:
3131
meta: ^1.10.0
3232
flutter:
3333
sdk: flutter
34-
webview_flutter_android: ^4.3.0
34+
webview_flutter_android: ^4.3.1
3535
webview_flutter_wkwebview: ^3.17.0
3636
webview_flutter: ^4.10.0
3737

@@ -41,7 +41,7 @@ dev_dependencies:
4141
flutter_driver:
4242
sdk: flutter
4343
mockito: ^5.4.5
44-
build_runner: ^2.1.10
44+
build_runner: ^2.4.14
4545
flutter_test:
4646
sdk: flutter
4747
webview_flutter_platform_interface: ^2.10.0

0 commit comments

Comments
 (0)