Skip to content

Commit

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

## 6.0.0.1
* Fix missing MAX SDK name and version for AdView ad requests.

## 6.0.0.0
* Certified with OguryPresage SDK 6.0.0.
* Annotated all `Activity` parameters with `@Nullable` to better avoid potential NPEs.
Expand Down
2 changes: 1 addition & 1 deletion OguryPresage/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ afterEvaluate {
apply(plugin = "adapter-publish")
}

val libraryVersionName by extra("6.0.0.0")
val libraryVersionName by extra("6.0.0.1")
val libraryArtifactId by extra("ogury-presage-adapter")

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public void loadAdViewAd(final MaxAdapterResponseParameters parameters, final Ma
final String bidResponse = parameters.getBidResponse();
log( "Loading " + ( AppLovinSdkUtils.isValidString( bidResponse ) ? "bidding " : "" ) + adFormat.getLabel() + " ad: " + placementId + "..." );

adView = new OguryBannerAdView( getContext( activity ), placementId, toAdSize( adFormat ) );
adView = new OguryBannerAdView( getContext( activity ), placementId, toAdSize( adFormat ), new OguryMediation( "AppLovin MAX", AppLovinSdk.VERSION ) );

AdViewListener adListener = new AdViewListener( placementId, listener );
adView.setListener( adListener );
Expand Down

0 comments on commit c3c83eb

Please sign in to comment.