From f912da9dec238fc5dc1bdc923bc7422e44b0f453 Mon Sep 17 00:00:00 2001 From: Helium Service <103450738+helium-service@users.noreply.github.com> Date: Mon, 28 Oct 2024 08:16:49 -0700 Subject: [PATCH] 5.4.12.4.0 (#82) --- CHANGELOG.md | 3 +++ README.md | 2 +- UnityAdsAdapter/build.gradle.kts | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ddcd6c..fc2347f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ All official releases can be found on this repository's [releases page](https:// ## Mediation 5 +### 5.4.12.4.0 +- This version of the adapter has been certified with Unity Ads SDK 4.12.4. + ### 5.4.12.3.0 - This version of the adapter has been certified with Unity Ads SDK 4.12.3. diff --git a/README.md b/README.md index 32d51d5..3340617 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The Chartboost Mediation Unity Ads adapter mediates Unity Ads via the Chartboost In your `build.gradle`, add the following entry: ``` - implementation "com.chartboost:chartboost-mediation-adapter-unity-ads:5.4.12.3.0" + implementation "com.chartboost:chartboost-mediation-adapter-unity-ads:5.4.12.4.0" ``` ## Contributions diff --git a/UnityAdsAdapter/build.gradle.kts b/UnityAdsAdapter/build.gradle.kts index f6cd540..695720b 100644 --- a/UnityAdsAdapter/build.gradle.kts +++ b/UnityAdsAdapter/build.gradle.kts @@ -42,7 +42,7 @@ android { minSdk = 21 targetSdk = 34 // If you touch the following line, don't forget to update scripts/get_rc_version.zsh - android.defaultConfig.versionName = System.getenv("VERSION_OVERRIDE") ?: "5.4.12.3.0" + android.defaultConfig.versionName = System.getenv("VERSION_OVERRIDE") ?: "5.4.12.4.0" buildConfigField("String", "CHARTBOOST_MEDIATION_UNITY_ADS_ADAPTER_VERSION", "\"${android.defaultConfig.versionName}\"") testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" @@ -89,7 +89,7 @@ dependencies { "candidateImplementation"("com.chartboost:chartboost-mediation-sdk:5.0.0") // Partner SDK - implementation("com.unity3d.ads:unity-ads:4.12.3") + implementation("com.unity3d.ads:unity-ads:4.12.4") // Adapter Dependencies implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")