Type Function Return value none Revision 2017.3060 Keywords analytics, attribution, Kochava Free App Analytics, logDeeplinkEvent See also kochavaFAA.logStandardEvent() kochavaFAA.*
Sends a deep-link event to Kochava.
URL schemes should be configured for your app to use this function.
kochavaFAA.logDeeplinkEvent( URL [, sourceApplication] )
String. The deep-link URL passed to your application.
String. The application that sent the
local kochavaFAA = require( "plugin.kochava.faa" )
local function kochavaListener( event )
-- Handle events here
end
-- Initialize plugin
kochavaFAA.init( kochavaListener,
{
appGUID = "YOUR_APP_GUID"
}
)
-- Get URL and "sourceApplication" data
kochavaFAA.logDeeplinkEvent( "myawesomeapp://feed/highscores", "com.company.otherapp" )