@@ -925,7 +925,11 @@ class Web3Auth(web3AuthOptions: Web3AuthOptions, context: Context) : WebViewResu
925925 path : String? = "wallet",
926926 ): CompletableFuture <Void > {
927927 AnalyticsManager .trackEvent(
928- AnalyticsEvents .WALLET_UI_CLICKED
928+ AnalyticsEvents .WALLET_UI_CLICKED ,
929+ mutableMapOf<String , Any >(
930+ " integration_type" to " android" ,
931+ " dapp_url" to this .loginParams?.dappUrl.toString(),
932+ )
929933 )
930934 val launchWalletServiceCF: CompletableFuture <Void > = CompletableFuture ()
931935 val savedSessionId = SessionManager .getSessionIdFromStorage()
@@ -997,6 +1001,8 @@ class Web3Auth(web3AuthOptions: Web3AuthOptions, context: Context) : WebViewResu
9971001 AnalyticsManager .trackEvent(
9981002 AnalyticsEvents .WALLET_SERVICES_FAILED ,
9991003 mutableMapOf<String , Any >(
1004+ " integration_type" to " android" ,
1005+ " dapp_url" to this .loginParams?.dappUrl.toString(),
10001006 " duration" to System .currentTimeMillis() - startTime,
10011007 " error" to " Wallet Services Error: Session ID is not found. Please login first."
10021008 )
0 commit comments