Type [Function][api.type.function] Return value String Revision Release 2025.3721 Keywords ads, advertising, Vungle See also vungle.*
Returns the plugin and underlying SDK version numbers as a string.
vungle.getVersionString()
local vungle = require( "plugin.vungle.v6" )
local appID
if ( system.getInfo("platform") == "android" ) then
appID = "YOUR_ANDROID_APP_ID"
else
appID = "YOUR_IOS_APP_ID"
end
-- Vungle listener function
local function adListener( event )
if ( event.phase == "init" ) then -- Successful initialization
print( event.provider )
end
end
-- Initialize the Vungle plugin
vungle.init( appID, adListener )
print( vungle.getVersionString() )