I am not able to integrate firebase Analysis
to my Xamarin
android project any help would be great. Thanks
I tried with adding NuGet packages below:
Xamarin.Firebase.Analytics.Impl
Xamarin.Firebase.Common
Xamarin.GooglePlayServices.Basement
Oncreate
in view:
protected override void OnCreate()
{
firebaseAnalytics = FirebaseAnalytics.GetInstance(this);?
}
//setUI:I bundled the log events.
void SetUI()
{
firebaseAnalytics.SetUserId(AppData.GlobalAppData.UserId);
Bundle bundle = new Bundle();
bundle.PutString(FirebaseAnalytics.Param.ItemId, "1");
bundle.PutString(FirebaseAnalytics.Param.ItemName, "adca");
firebaseAnalytics.LogEvent(FirebaseAnal
}
Can someone provide with there experience and provide a solution for what all steps need to be taken.