Skip to content

Commit

Permalink
Bump to version 7.1.0.0 (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliy-pavlenko authored Sep 27, 2024
1 parent 5b758dc commit 8cbb15e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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")
Expand Down
12 changes: 6 additions & 6 deletions mediation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
compileSdkVersion 34

defaultConfig {
minSdkVersion 19
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "$adapter_version"
Expand Down Expand Up @@ -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")
}

Expand All @@ -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")
Expand All @@ -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")
}
}
Expand Down

0 comments on commit 8cbb15e

Please sign in to comment.