diff --git a/CHANGELOG.md b/CHANGELOG.md index 60cd94f..77df864 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ Note that all version `X.Y.Z.T` of this adapter have been tested against the mat ## Next +## Version 7.1.0.0 +* Bump AdMob to v23.3.0 + ## Version 7.0.0.0 * Add inventoryGroupId parameter diff --git a/README.md b/README.md index 0a8b614..7e7d656 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ allprojects { Then, in your app's module *build.gradle* file, add the following implementation configuration to the *dependencies* section: ```kotlin -implementation 'com.criteo.mediation.google:criteo-adapter:7.0.0.0' +implementation 'com.criteo.mediation.google:criteo-adapter:7.1.0.0' ``` # License diff --git a/build.gradle b/build.gradle index d054868..84280cf 100644 --- a/build.gradle +++ b/build.gradle @@ -24,7 +24,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:7.4.2' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.21" classpath "com.banno.gordon:gordon-plugin:1.8.6" // NOTE: Do not place your application dependencies here; they belong @@ -58,7 +58,7 @@ ext { * deployed as well with version A.B.C.0. If fixes, or updates are required on the adapter without updating * the SDK, then the last digit is incremented to produce A.B.C.1, then A.B.C.2, ... */ - adapter_version = "7.0.0.0" + adapter_version = "7.1.0.0" isSnapshot = properties["isRelease"] != "true" def timestamp = new Date().format("yyyyMMdd.HHmm") diff --git a/mediation/build.gradle b/mediation/build.gradle index faac5a8..a008e72 100644 --- a/mediation/build.gradle +++ b/mediation/build.gradle @@ -30,7 +30,7 @@ android { compileSdkVersion 34 defaultConfig { - minSdkVersion 19 + minSdkVersion 21 targetSdkVersion 34 versionCode 1 versionName "$adapter_version" @@ -90,7 +90,7 @@ dependencies { compileOnly("androidx.annotation:annotation:1.0.0") - compileOnly("com.google.android.gms:play-services-ads:22.1.0") { + compileOnly("com.google.android.gms:play-services-ads:23.3.0") { exclude(group: "com.android.support") } @@ -105,15 +105,15 @@ dependencies { testImplementation("com.criteo.publisher:criteo-publisher-sdk-test-utils:$sdk_dev_dynamic_version") { exclude(group: "com.android.support") } - testImplementation("com.google.android.gms:play-services-ads:22.1.0") { + testImplementation("com.google.android.gms:play-services-ads:23.3.0") { exclude(group: "com.android.support") } testImplementation("com.criteo.publisher:criteo-publisher-sdk-debug:$sdk_dev_dynamic_version") androidTestImplementation("androidx.test:runner:1.5.2") - androidTestImplementation("androidx.test:core:1.4.0") + androidTestImplementation("androidx.test:core:1.5.0") androidTestImplementation("androidx.test:rules:1.5.0") - androidTestImplementation("androidx.test.ext:junit:1.1.3") + androidTestImplementation("androidx.test.ext:junit:1.1.5") androidTestImplementation("androidx.legacy:legacy-support-core-utils:1.0.0") androidTestImplementation("org.mockito:mockito-android:5.8.0") androidTestImplementation("org.jetbrains.kotlin:kotlin-stdlib") @@ -122,7 +122,7 @@ dependencies { androidTestImplementation("com.criteo.publisher:criteo-publisher-sdk-test-utils:$sdk_dev_dynamic_version") { exclude(group: "com.android.support") } - androidTestImplementation("com.google.android.gms:play-services-ads:22.1.0") { + androidTestImplementation("com.google.android.gms:play-services-ads:23.3.0") { exclude(group: "com.android.support") } }