Type Function Return value none Revision 2017.3060 Keywords ads, advertising, Appnext, setPreferredOrientation See also appnext.getPreferredOrientation() appnext.*
Effects full-screen and rewarded video ads only. Sets the preferred orientation, assuming both landscape and portrait are supported by the application.
appnext.setPreferredOrientation( adKey, preferredOrientation )
String. The ad key returned for a previously created ad.
String. The preferred orientation to be set for the ad. Possible values are "automatic", "landscape", and "portrait" "automatic")
local appnext = require( "plugin.appnext" )
local function adListener( event )
print( "Received " .. event.event .. " for " .. event.adKey .. " with message: " .. event.message )
end
-- Initialize the Appnext plugin
appnext.init( adListener )
-- Create your ads
local fullscreenPlacementID
local platform = system.getInfo( "platformName" )
if ( platform == "iPhone OS" ) then
fullscreenPlacementID = "YOUR_IOS_FULLSCREEN_PLACEMENT_ID"
elseif ( platform == "Android" ) then
fullscreenPlacementID = "YOUR_ANDROID_FULLSCREEN_PLACEMENT_ID"
end
local fullscreenAdKey = appnext.createAd( "fullscreen", fullscreenPlacementID )
appnext.setPreferredOrientation( fullscreenAdKey, "landscape" )