From ba7686da6314e35345534e8e80b164b122cfa5ef Mon Sep 17 00:00:00 2001 From: CB-RyanMcCormick <122290337+CB-RyanMcCormick@users.noreply.github.com> Date: Thu, 4 May 2023 12:28:09 -0500 Subject: [PATCH] [HB-5631] Chartboost to 9.3.0 (#39) * [HB-5631] Chartboost to 9.3.0 * Update Chartboost Ads maven --- CHANGELOG.md | 3 +++ ChartboostAdapter/build.gradle.kts | 5 +++-- README.md | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec9de59..b3d27d2 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.9.3.0.0 +- This version of the adapter has been certified with Chartboost SDK 9.3.0. + ### 4.9.2.1.2 - Prevents banner ads from getting stuck. Does not solve the underlying issue with Chartboost 9.2.1 that doesn't load a second bidding banner. diff --git a/ChartboostAdapter/build.gradle.kts b/ChartboostAdapter/build.gradle.kts index f54ce45..bf46681 100644 --- a/ChartboostAdapter/build.gradle.kts +++ b/ChartboostAdapter/build.gradle.kts @@ -24,6 +24,7 @@ repositories { password = System.getenv("JFROG_PASS") } } + maven("https://cboost.jfrog.io/artifactory/chartboost-ads/") maven("https://cboost.jfrog.io/artifactory/chartboost-mediation/") } @@ -35,7 +36,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.9.2.1.2" + android.defaultConfig.versionName = System.getenv("VERSION_OVERRIDE") ?: "4.9.3.0.0" buildConfigField("String", "CHARTBOOST_MEDIATION_CHARTBOOST_ADAPTER_VERSION", "\"${android.defaultConfig.versionName}\"") testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" @@ -71,7 +72,7 @@ dependencies { // For external usage, please use the following production dependency. // You may choose a different release version. - implementation("com.chartboost:chartboost-sdk:9.2.1") + implementation("com.chartboost:chartboost-sdk:9.3.0") // Partner SDK Dependencies implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4") diff --git a/README.md b/README.md index 28b3b27..f1bf910 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The Chartboost Mediation Chartboost adapter mediates Chartboost via the Chartboo In your `build.gradle`, add the following entry: ``` - implementation "com.chartboost:chartboost-mediation-adapter-chartboost:4.9.2.1.2" + implementation "com.chartboost:chartboost-mediation-adapter-chartboost:4.9.3.0.0" ``` ## Contributions