Type Function Return value none Revision Release 2024.3703 Keywords analytics, attribution, Kochava Free App Analytics, logDeeplinkEvent See also kochavaFAA.logEvent() 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" )