Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin release 4.0.0 #972

Merged
merged 4 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/google_mobile_ads/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
* The minimum supported Flutter version is now 3.7.0.
* Removes `visibility_detector` as a dependency, and the workaround added in
https://github.com/googleads/googleads-mobile-flutter/pull/610.
* Adds null checks for Ad Ids for Android in
https://github.com/googleads/googleads-mobile-flutter/pull/967
* Updated Android dependencies in https://github.com/googleads/googleads-mobile-flutter/pull/843
LTPhantom marked this conversation as resolved.
Show resolved Hide resolved
* Updates GMA iOS dependency to 10.11.0
* Updates GMA Android dependency to 22.5.0

## 3.1.0
* Updates GMA iOS dependency to 10.9.0
Expand Down
2 changes: 1 addition & 1 deletion packages/google_mobile_ads/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ android {
disable 'InvalidPackage'
}
dependencies {
api 'com.google.android.gms:play-services-ads:22.4.0'
api 'com.google.android.gms:play-services-ads:22.5.0'
implementation 'com.google.android.ump:user-messaging-platform:2.1.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.lifecycle:lifecycle-process:2.6.2'
Expand Down
2 changes: 1 addition & 1 deletion packages/google_mobile_ads/example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ subprojects {
project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
2 changes: 1 addition & 1 deletion packages/google_mobile_ads/ios/google_mobile_ads.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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','~> 10.9.0'
s.dependency 'Google-Mobile-Ads-SDK','~> 10.11.0'
s.dependency 'webview_flutter_wkwebview'
s.ios.deployment_target = '10.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: 3.1.0
version: 4.0.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