Skip to content

Commit

Permalink
Merge pull request #44 from ChartBoost/feature/rg/HB-6862
Browse files Browse the repository at this point in the history
HB-6862: Vungle 7.1.0
  • Loading branch information
bwised authored Dec 13, 2023
2 parents cc99fe7 + a05f0e2 commit 3035bcd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.1.0.0
- This version of the adapter has been certified with Vungle SDK 7.1.0.

### 4.7.0.0.0
- This version of the adapter has been certified with Vungle SDK 7.0.0.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0.0.0"
implementation "com.chartboost:chartboost-mediation-adapter-vungle:4.7.1.0.0"
```

## Contributions
Expand Down
4 changes: 2 additions & 2 deletions VungleAdapter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0.0.0"
android.defaultConfig.versionName = System.getenv("VERSION_OVERRIDE") ?: "4.7.1.0.0"
buildConfigField("String", "CHARTBOOST_MEDIATION_VUNGLE_ADAPTER_VERSION", "\"${android.defaultConfig.versionName}\"")

consumerProguardFiles("proguard-rules.pro")
Expand Down Expand Up @@ -72,7 +72,7 @@ dependencies {
"remoteImplementation"("com.chartboost:chartboost-mediation-sdk:4.0.0")

// Partner SDK
implementation("com.vungle:vungle-ads:7.0.0")
implementation("com.vungle:vungle-ads:7.1.0")

// Adapter Dependencies
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import com.vungle.ads.VungleError.Companion.NETWORK_UNREACHABLE
import com.vungle.ads.VungleError.Companion.NO_SERVE
import com.vungle.ads.VungleError.Companion.PLACEMENT_NOT_FOUND
import com.vungle.ads.VungleError.Companion.SERVER_RETRY_ERROR
import com.vungle.ads.VungleError.Companion.VUNGLE_NOT_INITIALIZED
import com.vungle.ads.VungleError.Companion.SDK_NOT_INITIALIZED
import com.vungle.ads.VunglePrivacySettings
import kotlinx.coroutines.CancellableContinuation
import kotlinx.coroutines.suspendCancellableCoroutine
Expand Down Expand Up @@ -775,7 +775,7 @@ class VungleAdapter : PartnerAdapter {
NO_SERVE, AD_FAILED_TO_DOWNLOAD -> ChartboostMediationError.CM_LOAD_FAILURE_NO_FILL
SERVER_RETRY_ERROR, ASSET_DOWNLOAD_ERROR -> ChartboostMediationError.CM_AD_SERVER_ERROR
NETWORK_ERROR, NETWORK_UNREACHABLE -> ChartboostMediationError.CM_NO_CONNECTIVITY
VUNGLE_NOT_INITIALIZED -> ChartboostMediationError.CM_INITIALIZATION_FAILURE_UNKNOWN
SDK_NOT_INITIALIZED -> ChartboostMediationError.CM_INITIALIZATION_FAILURE_UNKNOWN
INVALID_APP_ID -> ChartboostMediationError.CM_INITIALIZATION_FAILURE_INVALID_CREDENTIALS
PLACEMENT_NOT_FOUND -> ChartboostMediationError.CM_LOAD_FAILURE_INVALID_PARTNER_PLACEMENT
else -> ChartboostMediationError.CM_PARTNER_ERROR
Expand Down

0 comments on commit 3035bcd

Please sign in to comment.