Skip to content

Commit

Permalink
Moloco/3.4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AppLovin-Mobile-Engineering committed Nov 22, 2024
1 parent 1be5634 commit d4332c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Moloco/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.4.0.0
* Certified with Moloco SDK 3.4.0.
* Removed redundant log output when initialization was already completed.

## 3.3.0.1
* Removed unnecessary `Activity` null checks for ad loads.

Expand Down
2 changes: 1 addition & 1 deletion Moloco/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ afterEvaluate {
apply(plugin = "adapter-publish")
}

val libraryVersionName by extra("3.3.0.1")
val libraryVersionName by extra("3.4.0.0")

android.defaultConfig.minSdk = 21
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ public void initialize(final MaxAdapterInitializationParameters parameters, @Nul
}
else
{
log( "Moloco SDK already initialized" );
onCompletionListener.onCompletion( initializationStatus, null );
}
}
Expand Down Expand Up @@ -163,7 +162,7 @@ public void collectSignal(final MaxAdapterSignalCollectionParameters parameters,

updatePrivacyPreferences( parameters );

Moloco.getBidToken( (signal, errorType) -> {
Moloco.getBidToken( getContext( activity ), (signal, errorType) -> {

if ( errorType == null )
{
Expand Down

0 comments on commit d4332c7

Please sign in to comment.