Skip to content

Commit

Permalink
[Release] Version bumping for Flutter GMA SDK to version 5.2.0 (#1182)
Browse files Browse the repository at this point in the history
* GMA SDK Version bump

* Version bumping pubspec
  • Loading branch information
LTPhantom authored Oct 4, 2024
1 parent b63c671 commit 0330590
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions packages/google_mobile_ads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 5.2.0
* Removed use of rootViewController for iOS GMA SDK which solved issues like
https://github.com/googleads/googleads-mobile-flutter/issues/1146 and https://github.com/googleads/googleads-mobile-flutter/issues/700.
* Android GMA SDK is now initialized on a background thread.
* Updates GMA iOS dependency to 11.10.0
* Updates GMA Android dependency to 23.4.0

## 5.1.0
* Adds support for APIs from the [Android](https://developers.google.com/admob/android/privacy/release-notes) UMP SDK version 2.2.0.
* Adds support for APIs from the [iOS](https://developers.google.com/admob/ios/privacy/download#release_notes) UMP SDK version 2.4.0.
Expand Down
4 changes: 2 additions & 2 deletions packages/google_mobile_ads/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ android {
disable 'InvalidPackage'
}
dependencies {
api 'com.google.android.gms:play-services-ads:23.0.0'
implementation 'com.google.android.ump:user-messaging-platform:2.2.0'
api 'com.google.android.gms:play-services-ads:23.4.0'
implementation 'com.google.android.ump:user-messaging-platform:3.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.lifecycle:lifecycle-process:2.6.2'
implementation 'com.google.errorprone:error_prone_annotations:2.16'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/** Constants used in the plugin. */
public class Constants {
/** Version request agent. Should be bumped alongside plugin versions. */
public static final String REQUEST_AGENT_PREFIX_VERSIONED = "Flutter-GMA-5.1.0";
public static final String REQUEST_AGENT_PREFIX_VERSIONED = "Flutter-GMA-5.2.0";
/** Prefix for news template */
public static final String REQUEST_AGENT_NEWS_TEMPLATE_PREFIX = "News";

Expand Down
2 changes: 1 addition & 1 deletion packages/google_mobile_ads/ios/Classes/FLTConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
// limitations under the License.

/** Versioned request agent string. */
#define FLT_REQUEST_AGENT_VERSIONED @"Flutter-GMA-5.1.0"
#define FLT_REQUEST_AGENT_VERSIONED @"Flutter-GMA-5.2.0"
4 changes: 2 additions & 2 deletions packages/google_mobile_ads/ios/google_mobile_ads.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'google_mobile_ads'
s.version = '5.1.0'
s.version = '5.2.0'
s.summary = 'Google Mobile Ads plugin for Flutter.'
s.description = <<-DESC
Google Mobile Ads plugin for Flutter.
Expand All @@ -15,7 +15,7 @@ Google Mobile Ads plugin for Flutter.
s.source_files = 'Classes/**/*.{h,m}'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'Google-Mobile-Ads-SDK','~> 11.2.0'
s.dependency 'Google-Mobile-Ads-SDK','~> 11.10.0'
s.dependency 'webview_flutter_wkwebview'
s.ios.deployment_target = '12.0'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS' => 'armv7 arm64 x86_64' }
Expand Down
2 changes: 1 addition & 1 deletion packages/google_mobile_ads/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: google_mobile_ads
version: 5.1.0
version: 5.2.0
description: Flutter plugin for Google Mobile Ads, supporting
banner, interstitial (full-screen), rewarded and native ads
repository: https://github.com/googleads/googleads-mobile-flutter/tree/main/packages/google_mobile_ads
Expand Down

0 comments on commit 0330590

Please sign in to comment.