Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix nova native ad not display #19

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NovaAdapter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Pod::Spec.new do |spec|


spec.name = "NovaAdapter"
spec.version = "0.0.71"
spec.version = "0.0.72"
spec.summary = "an adapter for Google SDK"
spec.description = "an adapter for Google SDK for MSP S2S"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>NovaAdapter.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>4</integer>
<integer>6</integer>
</dict>
</dict>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion NovaAdapter/NovaAdapter/NovaAdapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class NovaAdapter: AdNetworkAdapter {
guard let nativeAdView = nativeAdView as? NativeAdView,
let mediaView = nativeAdView.mediaView as? NovaNativeAdMediaView,
let novaNativeAdItem = self.nativeAdItem,
let rootViewController = nativeAdView.rootViewController else {
let rootViewController = self.adListener?.getRootViewController() else {
self.adListener?.onError(msg: "fail to render native view")
return
}
Expand Down
Loading