google-analytics

How to create a channelpath in BigQuery based on events?

梦想的初衷 提交于 2019-12-11 02:43:52
问题 I want to create channelpaths in Bigquery on a user level. I want the path to end when a transaction occurs. The next visit will then start a new path. Currently I have one path per user summing all the transactions. See the provided code below. I've also included the current OUTPUT TABLE and the desired OUTPUT TABLE. My idea would be to create a new column that is counting the transactions. This value would start at 0 and need to be incremented by 1 AFTER a transaction occured. Then I would

Flush google analytics events manually with Google Play Services

时光毁灭记忆、已成空白 提交于 2019-12-11 02:35:08
问题 Is there any way to manually flush all events in Google analytics queue, when Google Play Services is installed? There is one method in the Android GA documentation: GoogleAnalytics.getInstance(getActivity().getBaseContext()).dispatchLocalHits(); But this method doesn't work with Google Play Services - the docs say: public void dispatchLocalHits () Dispatches queued hits (view, events, or transactions) to Google Analytics if a network connection is available, and the local dispatching service

Using static library in both App and Cocoa Touch Framework targets

纵然是瞬间 提交于 2019-12-11 02:28:31
问题 I've created a new "Cocoa Touch Framework" target called MyAppCore in my iPad project called MyApp , with the intention of putting some common code in there. Overall it works great, however, I've encountered problems with adding the static library provided by Google Analytics. I want to be able to use Google Analytics not only in the MyApp target, but inside of the MyAppCore target as well. In order to make both targets build, I have to link both targets with libGoogleAnalyticsServices.a.

how many users download my IOS application

蹲街弑〆低调 提交于 2019-12-11 02:27:44
问题 I want to know the number of users who install my application from itunes store, where can I found it? Note: I don't want Google Analytics, I just want the number of users who install it in their devices. Otherwise, with android applications, you can see the installation and active installations (the number of users who install the application from play store). 回答1: You can find the number in iTunes Connect. Login to iTunes Connect. Sales and Trends Select the app and you can see daily,

Google Analytics: How to track hits to mobile site as hits to main site

99封情书 提交于 2019-12-11 02:24:00
问题 We are developing a completely new mobile version of our site, it is a HTML5 site written using Sencha Touch 2 (Ext JS, JavaScript). We are using Google Analytics on our main site, and we would like to use GA on the mobile site as well. However our desired use case is a little special: We would like hits to articles on the mobile site to be tracked as hits to the corresponding article on the main site. The reasoning behind this is the desire to aggregate the statistics, and not have the data

Regular Expression not working in Google Analytics, possibly due to Positive Lookahead?

て烟熏妆下的殇ゞ 提交于 2019-12-11 02:18:31
问题 I have a regular expression here which works perfectly in Regex101 (see demo). anubhava provided this solution in this question. /^(?=.*\b[1-9]\b)(?=.*\b1[0-7]\b)[0-9]+(?:,[0-9]+)+$/gm However, when I try to use it in Google Analytics, I get this warning - " Invalid regular expression . Your data request includes an invalid regular expression." Do you know how I can get the same results, but satisfy Google Analytics security requirements, which seem to be disallowing lookaheads? 回答1: ((^|,)(

Event tracking not working

∥☆過路亽.° 提交于 2019-12-11 01:41:58
问题 I am trying to integrate the Google's event tracking on my application using the below script. I can able to see the Events in "Realtime" tab. But I am not able to see the events in "Content" tab. var _gaq = _gaq || []; _gaq.push(['_setDomainName', 'none']); _gaq.push(['_setAccount', 'XXXXX']); _gaq.push(['_trackPageview']); _gaq.push(['_trackEvent', 'request.fullpath', 'plan_desc', 'plan_code>']); 回答1: Are you grabbing the script that defines the gaq function? var _gaq = _gaq || []; _gaq

Is it possible to track the app with Google Analytics in IOS Simulator?

偶尔善良 提交于 2019-12-11 01:34:02
问题 I tried to track my app using Google Analytics but didn't see when it opened in "real-time mode". I'm using Google Analytics for Mobile Apps iOS SDK v3 . In Delegate.m : - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ // Optional: automatically send uncaught exceptions to Google Analytics. [GAI sharedInstance].trackUncaughtExceptions = YES; // Optional: set Google Analytics dispatch interval to e.g. 20 seconds. [GAI sharedInstance]

Integrate Firebase Analytics with Xamarin Android

倖福魔咒の 提交于 2019-12-11 01:23:27
问题 There is no official documentation for analytics integration with xamarin. Only Xamarin Google Analytics Sample is available officially. But we found an official Firebase nuget package Xamarin.Firebase.Analytics has been available for analytics which is provided by microsoft. But there is no proper document to configure firebase with xamarin. We have created app id and .json file got generated from firebase console for our application. But there is no reference to configure these in xamarimn

Configure Multiple Firebase Projects Runtime in iOS application and Firebase/Google Analytics

不想你离开。 提交于 2019-12-11 01:08:19
问题 We are starting to migrate from Google Analytics to Firebase Analytics as it is going to be deprecated in a year. We have a need of initializing the firebase project runtime in our iOS application and we are following the steps mentioned here: https://firebase.google.com/docs/projects/multiprojects?authuser=0 Why do we need to initialize the firebase manually and at runtime? The details are in this issue: Switching between different firebase projects (runtime) in one single APK file I posted