Skip to content

Commit

Permalink
4.9.7.0.2 Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bichenwang committed Nov 26, 2024
1 parent a98ed41 commit e974577
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 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.9.7.0.2
- Fixed potential consent issue.

### 4.9.7.0.1
- Runs setUp() on IO context to reduce possibility of ANR terminations.

Expand Down
2 changes: 1 addition & 1 deletion ChartboostAdapter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,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.7.0.1"
android.defaultConfig.versionName = System.getenv("VERSION_OVERRIDE") ?: "4.9.7.0.2"
buildConfigField("String", "CHARTBOOST_MEDIATION_CHARTBOOST_ADAPTER_VERSION", "\"${android.defaultConfig.versionName}\"")

consumerProguardFiles("proguard-rules.pro")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ class ChartboostAdapter : PartnerAdapter {
// If anything was set previously for GDPR, it will be reset when GDPR no longer applies.
if (applies != true) {
Chartboost.clearDataUseConsent(context, GDPR.GDPR_STANDARD)
return
}

when (gdprConsentStatus) {
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 Chartboost adapter mediates Chartboost via the Chartboo

In your `build.gradle`, add the following entry:
```
implementation "com.chartboost:chartboost-mediation-adapter-chartboost:4.9.7.0.1"
implementation "com.chartboost:chartboost-mediation-adapter-chartboost:4.9.7.0.2"
```

## Contributions
Expand Down

0 comments on commit e974577

Please sign in to comment.