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