From 83954cc7f6fe5a435dedb2a7023ddaab041571fd Mon Sep 17 00:00:00 2001 From: chauduyphanvu Date: Thu, 11 May 2023 12:21:29 -0400 Subject: [PATCH] Vungle 4.6.12.1.2 (#38) --- CHANGELOG.md | 3 +++ README.md | 2 +- VungleAdapter/build.gradle.kts | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24b4e8b..ec8ee2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ Note the first digit of every adapter version corresponds to the major version of the Chartboost Mediation SDK compatible with that adapter. Adapters are compatible with any Chartboost Mediation SDK version within that major version. +### 4.6.12.1.2 +- Added support for rewarded interstitial ad format. + ### 4.6.12.1.1 - Update the dependency on Chartboost Mediation SDK to 4.0.0. diff --git a/README.md b/README.md index 633fc96..bdecc42 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The Chartboost Mediation Vungle adapter mediates Vungle via the Chartboost Media In your `build.gradle`, add the following entry: ``` - implementation "com.chartboost:chartboost-mediation-adapter-vungle:4.6.12.1.1" + implementation "com.chartboost:chartboost-mediation-adapter-vungle:4.6.12.1.2" ``` ## Contributions diff --git a/VungleAdapter/build.gradle.kts b/VungleAdapter/build.gradle.kts index 75f8606..32ca76e 100644 --- a/VungleAdapter/build.gradle.kts +++ b/VungleAdapter/build.gradle.kts @@ -35,7 +35,7 @@ android { minSdk = 21 targetSdk = 33 // If you touch the following line, don't forget to update scripts/get_rc_version.zsh - android.defaultConfig.versionName = System.getenv("VERSION_OVERRIDE") ?: "4.6.12.1.1" + android.defaultConfig.versionName = System.getenv("VERSION_OVERRIDE") ?: "4.6.12.1.2" buildConfigField("String", "CHARTBOOST_MEDIATION_VUNGLE_ADAPTER_VERSION", "\"${android.defaultConfig.versionName}\"") testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"