Skip to content

Commit

Permalink
Merge branch 'main' into rmccormick/applovin-4.12.2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CB-RyanMcCormick authored Mar 18, 2024
2 parents 10551ae + 5201d73 commit 5de579a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,10 @@ class AppLovinAdapter : PartnerAdapter {
override suspend fun setUp(
context: Context,
partnerConfiguration: PartnerConfiguration,
): Result<Unit> {
): Result<Unit> = withContext(IO) {
PartnerLogController.log(SETUP_STARTED)

return suspendCancellableCoroutine { continuation ->
return@withContext suspendCancellableCoroutine { continuation ->
fun resumeOnce(result: Result<Unit>) {
if (continuation.isActive) {
continuation.resume(result)
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Adapters are compatible with any Chartboost Mediation SDK version within that ma
### 4.12.2.0.0
- This version of the adapter has been certified with AppLovin SDK 12.2.0.

### 4.12.1.0.1
- This version of the adapter has been certified with AppLovin SDK 12.1.0 and performs initialization on `IO` to help reduce potential ANR issues.

### 4.12.1.0.0
- This version of the adapter has been certified with AppLovin SDK 12.1.0.

Expand Down

0 comments on commit 5de579a

Please sign in to comment.