I have application which use Firebase SDK. I wanna know inflow route to download my app. so I use campaign parameter like this
https://play.google.com/store/apps/details?id=com.zzieut.meu&d=1&utm_campaign=test&utm_medium=zzim_web&utm_source=zzieut
but I can't see campaign information on my Firebase Analytics. It show (not set) (net set)....
I think this is same problem with this post.
Link :
Can't see custom campaign parameter result of Firebase Dynamic Link in Google Analytics
How can I analyze my app input information?? :(
Related
I have to integrate Google Analytics in my Android app.
Completed all the code for it But, Having one issue.
The Issue is taking Tracking ID from my google analytics account.
According to the Document :
==> To find the Google Analytics ID (Tracking Id):
Sign in to your Analytics account.
Click Admin.
Select an account from the menu in the ACCOUNT column.
Select a property from the menu in the PROPERTY column.
Under PROPERTY, click Tracking Info > Tracking Code. Your Google Analytics ID is displayed at the top of the page.
But, I can't find Tracking Info Option or any Tracking Code there according to the step number : 5.
From where can I get Tracking Id which look like this one : (UA-41888835-6) ?
NOTE : I can find Property Id there.
While creating property click on advanced option and enable "Create a Universal Analytics property". This will
Then enable "Create a Universal Analytics property"
then lick next and complete the property creation, now you will have two different properties created. Now choose the universal property where you will find the tracking info. GA4 will not have tracking info.
There are 2 ways to get the Tracking ID in Google Analytics:
If you are using web properties, then Tracking ID is in Admin / Property / Tracking Info / Tracking Code, just as you noted in your question.
If you are using App + Web properties, things get a little bit more complicated. For Android and iOS apps Data Streams, there is no tracking ID as to have GA tracking, you need to add Firebase in your app and link your GA account with Firebase.
However if you are using a web Data Stream, you can get the Tracking ID (although it is called Measurement ID) from Admin / Property / Data Stream / Web.
You may read more details on this article https://analyticshelp.io/blog/google-analytics-property-tracking-id/
Click on setting on lower left -> Click on admin -> select "data streams" under property -> Expand the web tab -> scroll down and click on google site tag
This will definitely solve your problem :)
Since creating the video, Google has changed the default version of Google Analytics from Universal analytics to Google Analytics 4. However, you can still create a universal analytics property. To create an Universal analytics property, click on the "Show advanced options" link on the first page of the create property setup wizard, and then select the toggle to "Create a Universal analytics property". This will give you the tracking ID I mention in the video.
Credits goes to Guiding Digital youtube channel https://youtu.be/__PctBcNZ-c
For the Solution,
I have integrated Firebase from my Android Studio and then you can integrate your firebase project in Google Analytics. So the solution is implementing Google Analytics with Firebase.
How can we send custom dimension and custom matrics using Google Analytics for Firebase? I have read Google Analytics for Firebase and also implemented it with help of this link implement Google Analytics for Firebase. It is working and I can see it on real time tracking, But I want to know that how can we send analytics parameter that is use in GA like Custom matrics and Custom Dimension? I did not find any link or idea about it.
My Answer:
Steps 1: Access the official set-up docs here: https://firebase.google.com/docs/analytics/android/start/
Step 2: Access the firebase debugview to test your event set-up in real-time: https://firebase.google.com/docs/analytics/debugview or access intra-day tables in BigQuery.
Step 3: Your data will start showing up within 24 hours (if enough users triggers it).
How to make that Firebase understand and track installation of apps (iOS and Android) with UTM tracking links (for example I want to track installs of apps from my site from footer link)? In GA it works perfect.
In Firebase I din't find any documentations on it (in app only Firebase SDK without Google Analytics).
Utm link
You can create dynamic link with UTMs in Firebase console
The info is in Conversion tab in the Firebase dashboard.
What you may want to do is to apply the filter with "first_open" which is the event name.
I have problem with Google Firebase
I use Firebase Analytics and I want to use user properities for sepatare group users on my app.
Now I´m triing
FirebaseAnalytics analytics = FirebaseAnalytics.getInstance(this.getApplicationContext());
analytics.setUserProperty("myGroup", "1");
and another user
FirebaseAnalytics analytics = FirebaseAnalytics.getInstance(this.getApplicationContext());
analytics.setUserProperty("myGroup", "2");
I don´t see on console Firebase Analytics. How I set user properities correctly? And than where I will see on console Firebase?
The Developer Guide mentions that you should first register the user property in the Analytics page of the Firebase console. You'll find a tab there entitled "User Properties". After you register "myGroup" there, start logging more events after setting "myGroup" in your app and you will be able to filter those event reports using "myGroup" after a few hours.
Actually, as from my experience using BigQuery as well with Firebase, I want to add some more depth information about it using the comment above:
Yes, as mentioned above, to see your User Properties you need to add them like mentioned above on your Firebase Console (for filtering, etc.).
However, not adding is doesn't mean that they are not collected. It's logging regardless, they are not available on Firebase Console until you add them. However, as raw data they're there. Not necessarily an information you needed but it's good to know the truth behind it. Firebase Console doesn't let you see the raw data so you won't see it but, mentioning that it's not logging wouldn't be true.
I am new to analytics and stuck at one point i.e Segment.io (customer data hub). I created an Android app integrated with the Segment Android SDK and expected to see segment.io data in Google Analytics. What is the process I have to follow to see the data of Segment in Google Analytics?
The process is:
Install Segment Android SDK into your app (already done, as follows from your post)
Go to Google Analytics (Admin Panel) and create a new property with "Mobile App" type. GA will asign you a new counter id UA-XXXXXX-X
Go to Segment.IO "Integrations" and turn on Google Analytics. Paste Google analytics counter id UA-XXXXXX-X into "MOBILE TRACKING ID" field. Save changes.
Now, if your mobile app is calling screen and track methods of the Segment API SDK correctly (check Segment.IO's Debugger) - all events will be passed to Google Analytics and showed in Behavior-Events, and screens in Behavior-Screens sections.