Hey everyone,
Is anyone else having issues with getting the revmob fullscreen?
I can test the video and rewarded videos just fine. I set up all three the same exact way.
Thanks!
Hey everyone,
Is anyone else having issues with getting the revmob fullscreen?
I can test the video and rewarded videos just fine. I set up all three the same exact way.
Thanks!
I do not see any issues with loading / showing Revmob “interstitial” ads on iOS or Android.
I still cannot figure out my issue. My reward video and video work fine. Its just the fullscreen ad. I double checked my fullscreen ID from revmob multiple times.
Here is my error log
Jan 12 07:11:56.385 [Device] ad phase: sessionStarted
Jan 12 07:11:56.386 [Device] insdie session started
Jan 12 07:11:56.413 [Device] [RevMob] Initializing Fullscreen.
Jan 12 07:11:56.517 [Device] ERROR: main.lua:31: ERROR: Unsupported Ad unit type
Jan 12 07:11:56.519 [Device] [RevMob] Initializing Fullscreen.
Jan 12 07:11:56.551 [Device] [RevMob] Testing mode off
Jan 12 07:11:56.552 [Device] [RevMob] Parallax effect disabled
Jan 12 07:11:57.049 [Device] [RevMob] Ad received: (200) - (null)
Jan 12 07:11:57.149 [Device] [RevMob] Ad received: (200) - (null)
placementIdFullscreen = "[revmob full screen id number]" placementIdInterstitialVideo= "[revmob video id number]" placementIdReward = "[revmob reward video number]" local function adListener( event ) print("ad phase: " .. event.phase) if ( event.phase == "init" ) then -- Successful initialization if event.isError then print( event.isError ) end elseif ( event.phase == "sessionStarted" ) then -- Successful initialization --never occured for me print("insdie session started") -- Load a RevMob ad revmob.load( "rewardedVideo", placementIdReward ) revmob.load("fullscreen",placementIdFullscreen) revmob.load("video",placementIdInterstitialVideo) ...
My hero!
– Scene_menu
local revmob = require( “plugin.revmob” )
local placementIDV = “58f8e9bf4bc314ef437e0a1b”
local placementID = “58f8e9bf4bc314ef437e0a13”
function adListenerV( event )
if ( event.phase == “init” ) then – Successful initialization
– Load a RevMob ad
revmob.load( “interstitial”, placementIDV )
revmob.load( “banner”, placementID )
elseif ( event.phase == “loaded” ) then – The ad was successfully loaded
– Show the ad
revmob.show( placementIDV, { yAlign=“center” } )
revmob.show( placementID, { yAlign=“top” } )
end
end
revmob.init( adListenerV, { appId=“58f8e9bf4bc314ef437e0a11” } )
—bellow
revmob.hide( placementIDV )
revmob.hide( placementID )
Runtime:removeEventListener( “enterFrame”, adListenerV )
– Scene_restart
local revmob = require( “plugin.revmob” )
local placementIDV = “58f8e9bf4bc314ef437e0a1b”
function adListenerV( event )
if ( event.phase == “init” ) then – Successful initialization
– Load a RevMob ad
revmob.load( “interstitial”, placementIDV )
elseif ( event.phase == “loaded” ) then – The ad was successfully loaded
– Show the ad
revmob.show( placementIDV, { yAlign=“center” } )
end
end
revmob.init( adListenerV, { appId=“58f8e9bf4bc314ef437e0a11” } )
it works pefect in menu file but banner ad is keep showing on game page And in end the restart scene the interstitial ad is not poping up. what am i missing please guide someone.
I do not see any issues with loading / showing Revmob “interstitial” ads on iOS or Android.
I still cannot figure out my issue. My reward video and video work fine. Its just the fullscreen ad. I double checked my fullscreen ID from revmob multiple times.
Here is my error log
Jan 12 07:11:56.385 [Device] ad phase: sessionStarted
Jan 12 07:11:56.386 [Device] insdie session started
Jan 12 07:11:56.413 [Device] [RevMob] Initializing Fullscreen.
Jan 12 07:11:56.517 [Device] ERROR: main.lua:31: ERROR: Unsupported Ad unit type
Jan 12 07:11:56.519 [Device] [RevMob] Initializing Fullscreen.
Jan 12 07:11:56.551 [Device] [RevMob] Testing mode off
Jan 12 07:11:56.552 [Device] [RevMob] Parallax effect disabled
Jan 12 07:11:57.049 [Device] [RevMob] Ad received: (200) - (null)
Jan 12 07:11:57.149 [Device] [RevMob] Ad received: (200) - (null)
placementIdFullscreen = "[revmob full screen id number]" placementIdInterstitialVideo= "[revmob video id number]" placementIdReward = "[revmob reward video number]" local function adListener( event ) print("ad phase: " .. event.phase) if ( event.phase == "init" ) then -- Successful initialization if event.isError then print( event.isError ) end elseif ( event.phase == "sessionStarted" ) then -- Successful initialization --never occured for me print("insdie session started") -- Load a RevMob ad revmob.load( "rewardedVideo", placementIdReward ) revmob.load("fullscreen",placementIdFullscreen) revmob.load("video",placementIdInterstitialVideo) ...
My hero!
– Scene_menu
local revmob = require( “plugin.revmob” )
local placementIDV = “58f8e9bf4bc314ef437e0a1b”
local placementID = “58f8e9bf4bc314ef437e0a13”
function adListenerV( event )
if ( event.phase == “init” ) then – Successful initialization
– Load a RevMob ad
revmob.load( “interstitial”, placementIDV )
revmob.load( “banner”, placementID )
elseif ( event.phase == “loaded” ) then – The ad was successfully loaded
– Show the ad
revmob.show( placementIDV, { yAlign=“center” } )
revmob.show( placementID, { yAlign=“top” } )
end
end
revmob.init( adListenerV, { appId=“58f8e9bf4bc314ef437e0a11” } )
—bellow
revmob.hide( placementIDV )
revmob.hide( placementID )
Runtime:removeEventListener( “enterFrame”, adListenerV )
– Scene_restart
local revmob = require( “plugin.revmob” )
local placementIDV = “58f8e9bf4bc314ef437e0a1b”
function adListenerV( event )
if ( event.phase == “init” ) then – Successful initialization
– Load a RevMob ad
revmob.load( “interstitial”, placementIDV )
elseif ( event.phase == “loaded” ) then – The ad was successfully loaded
– Show the ad
revmob.show( placementIDV, { yAlign=“center” } )
end
end
revmob.init( adListenerV, { appId=“58f8e9bf4bc314ef437e0a11” } )
it works pefect in menu file but banner ad is keep showing on game page And in end the restart scene the interstitial ad is not poping up. what am i missing please guide someone.