Android :: Google Analytics Install Referrer Issue
Nov 1, 2010
I needed to track install information, so i used com.android.vending.INSTALL_REFERRER intent for google analytics: http://code.google.com/mobile/analytics/docs/android/
I have put that intent into manifest as following:
<receiver android:name="com.mycompany.MyReceiver" android:exported="true"> <intent-filter> <action android:name="com.android.vending.INSTALL_REFERRER" /> </intent-filter> </receiver>
Inside MyReceiver class, i've implemented:
public void onReceive(Context context, Intent intent) { String referrer = URLDecoder.decode(intent.getStringExtra("referrer")) Log.d(TAG, referrer); com.google.android.apps.analytics.AnalyticsReceiver receiver = new com.google.android.apps.analytics.AnalyticsReceiver(); receiver.onReceive(context, intent);}
Then i installed app using generated at http://code.google.com/mobile/analytics/docs/android/#android-market-... url, and got this in log:
DEBUG/TestApplication(31977): utm_source=androidmarket&utm_medium=device&utm_campaign=search&utm_term=pname:com.mycompany.test.market&rowindex=0&hl=en&correctedQuery= WARN/googleanalytics(31532): Badly formatted referrer missing campaign, name or source WARN/googleanalytics(31532): Badly formatted referrer, ignored
So, instead of referral data that was given at url generation, i've got data which looks like i was searching for my app at Market
Does anyone have this kind of trouble, or knows how to help?
View 2 Replies
Jun 29, 2010
I am working on a mobile app on the Android platform (and going forward for the iPhone) and am evaluating the Flurry Analytics and Google Analytics platforms for the app. Both platforms have SDKs for the Android and the iPhone and seem very similar in most ways.
View 3 Replies
View Related
Jun 18, 2010
Do not start the GoogleAnalyticsTracker in your Application onCreate() method if using referral tracking.
Well, of course I'd like to use referral tracking. It would be my whole reason to use Google Analytics instead of a more full featured analytics.
But what does this mean exactly?
Does it mean: Start the tracker somewhere else? (where? onStart) Don't start it at all - it will get started for you? You can't use a tracker if you are using referral tracking?
Has anybody used referral tracking so they can give me some tips?
View 2 Replies
View Related
Apr 19, 2010
I am wondering what my options are for using GData and specifically the analytics api on android to build a small widget. After searching around for a while I couldnt come up with any libraries with decent examples.
Are there any dedicated libraries with some decent examples / doco to do this sort of thing? I would like to target 1.5 but if the are 2.0 only I guess that is fine too.
View 1 Replies
View Related
Nov 8, 2010
I have created a tested Google Analytics sample app as directed in http://code.google.com/mobile/analytics/docs/android/gle.com/mobile/analytics/docs/android/
And I have initiated Tracking in my code using
CODE:.............
And
CODE:.............
I have created a Google Analytics account, In my account if go to Analytics setting tab. I am getting the status as "Tracking Unknown"
I tried clicking on the edit and clicked check status, Then too I am Getting "Tracking Not Installed"
For Reference My code is:
CODE:....................
View 2 Replies
View Related
Jun 10, 2010
I do want to implement the Google Analytics for mobile on my android application using the sdk provided on this page http://code.google.com/intl/it-IT/mobile/analytics/docs/android/
Does someone knows, before i start to integrate it, if it tracks the keywords people used on the android market in order to arrive and install my application ?
If it does not, which would be the purpose of using this ?
View 3 Replies
View Related
Sep 22, 2010
I'd like to be able to track the Version number of my application using Google Analytics Android SDK, and the Device Model name for people connecting to my application; What is the best way of achieving this? I'm assuming that I might be able to do something like: Will this work, and is this the best way of achieving this, or should I be using Events? Code...
View 1 Replies
View Related
Nov 4, 2010
I am trying to register a Broadcast Receiver that catches "com.android.vending.INSTALL_REFERRER" intents launched by Android after an app is installed from the Market. However, I cannot use Google Analytics so I have created my own solution. I have added the following to my manifest file:
<receiver android:name="com.test.Receiver" android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
and created a basic BroadcastReceiver class:.........................
View 1 Replies
View Related
Sep 27, 2012
is there an app or browser that can disable the referer ? on my laptop with opera browser i can do it.
View 3 Replies
View Related
Sep 1, 2010
Yes we have threads about this already but we still have not gotten an answer AND I think it's about time somebody at least explain what does this number actually MEAN. I'm getting frustrated with the lack of transparency on this.
My apps used to be around 56% active installs
VERY soon after I updated the apps to allow install to SDCARD (preferExternal), then the active install count started dropping like a rock. Now it's around 39% today for my main app.
My opinion is there is a bug in the SDCARD install feature somewhere that is not counting those installs. We know there already is a bug with home screen icons if you install to sdcard you will get a blank icon until the Home app restarts.
View 1 Replies
View Related
Oct 31, 2010
Is anyone using AdMob analytics to track location and events in their app? I haven't been able to find any Android relevant info for the (AdMob) analytics side of things. Can someone please point me in the right direction? Alternatively, what are you using to track location and event data?
View 2 Replies
View Related
Apr 1, 2010
I need to use google analytics tracking for my app and it says that it is supported with versions 1.6 and higher.
But my app runs on versions 1.5 and higher and right now it does not have an issue when I add the tracking code to my manifest.
CODE;...........................
View 2 Replies
View Related
Aug 4, 2009
I'm developing on Android at the moment and want to know the best mobile app analytics for android and iPhone. I only need usage stats at the moment.
View 3 Replies
View Related
Dec 15, 2013
I am considering adding google analytics to my game to gather usage statistics etc. But I wonder if it can do more harm then good. Currently my app does not require any special privileges, but once I add analytics code it obviously will require internet access permission which might make some user reluctant to install it in the first place.
View 1 Replies
View Related
May 19, 2010
Tracking events and setting up Analytics for Websites seems easy. You create an account with one of the Analytics service providers like Google. They give you javascript code that you embed in your pages (whichever event you wish to track) and voila..you're done.
I have written a native application for Android phones, which is actually an adaptation of the actual web site. Now, I am required to setup Analytics and tracking for this native application.
Question:
How to do setup a native application for Analytics? We have Java Script code(not Google Analytics but for some other engine) that works for the original web site. Is there a way to incorporate that in the native application? I know Android supports Java Script via WebViews(Webkit);my application does not have webviews, it is native!
I have not worked on JavaScript since school so excuse me if I sound naive.
View 3 Replies
View Related
May 14, 2009
I would like test android calendar application of g1 emulator (android sdk). Anybodys knows how to install this program in a emulator?
View 2 Replies
View Related
Sep 9, 2013
I need to know how I can install Google play service on my android phone...
I am using tecno N7
View 4 Replies
View Related
Oct 1, 2010
For some reason, when I try to install Google Earth, it says Package File invalid. Anyone experience this too? I have 2.1, rooted.
View 2 Replies
View Related
May 22, 2010
While trying to update Google Earth, I get an error message that says "Package file was not singed correctly". It seems to download fine, but keeps ending with "Installation unsuccessful".
View 3 Replies
View Related
Jul 16, 2010
So, I was messing around with Jager rom yesterday, and liked it enough. However, I really prefer the default gmail app to the K9 mail he included. How exactly can I install gmail's android app to Jager rom? I downloaded a pack from the incredibleroms site that was for Cyanogen (the 2.1 version) that said it was for google apps.
View 3 Replies
View Related
Jul 29, 2010
It will not successfully installed. Can anyone else confirm this?
View 4 Replies
View Related
Dec 12, 2012
My custom ROM didn't come with Google Talk. I don't want another IM client that can have Google talk on it i want the real thing. I have tried loading talk in system/app but it didn't load. Another time i tried again it came in the app drawer but when i opened it it crashed. I am running salty bean ROM and devil kernel. does this kernel support it or not? I did set the permissions correctly and still no luck.
View 3 Replies
View Related
Apr 6, 2010
Below are the only instructions i managed to find from google on how to install the android NDK, it is written as if we all run Linux and presumes we all understand what these obscure tools are. My comments and questions appear in Italics if somone who knows unix and windows would translate for google that would be great!
Android NDK Installation
Introduction:
Please read docs/OVERVIEW.TXT to understand what the Android NDK is and is not. This file gives instructions on how to properly setup your NDK.
I. Requirements:
The Android NDK currently requires a Linux, OS X or Windows host operating system. Windows users will need to install Cygwin (http://www.cygwin.com) to use it. Note that running the NDK under MSys is not supported.
You will need to have the Android SDK and its dependencies installed. The NDK cannot generate final application packages (.apk files), only the shared library files that can go into them.
IMPORTANT:
The Android NDK can only be used to target system images using the Cupcake (1.5) or later releases of the platform. This is due to subtle toolchain and ABI related changed that make it incompatible with 1.0 and 1.1 system images.
The NDK requires GNU Make 3.81 or later being available on your development system. Earlier versions of GNU Make might work but have not been tested.
You can check this by running 'make -v' from the command-line. The output should look like:
GNU Make 3.81 Copyright (C) 2006 Free Software Foundation, Inc.
...
On certain systems, GNU Make might be available through a different command like 'gmake' or 'gnumake'. For these systems, replace 'make' by the appropriate command when invoking the NDK build system as described in the documentation.
Great some strange thing called gnu make.. if your not going to tell me what it does maybe you then at least you could give me a URL to it?
The NDK also requires a Nawk or GNU Awk executable being available on your development system. Note that the original 'awk' program doesn't implement the 'match' and 'substr' functions used by the NDK build system.
Ok another tool, with 1 of 2 possible names, but not the third... and again where should i download this?
On Windows, you will need to install a recent release of Cygwin to use the NDK.
See http://www.cygwin.com for instructions.
Woohoo a URL! download took about a day because these install instructions do not specify what parts to download.
II. Preparing your installation prebuilt cross-toolchain binaries:
After installing and unarchiving the NDK, you will need to run the following
command from the root folder:
build/host-setup.sh
hello? windows dont run nothing but .exe .com or .dll, just tell me how you want me to run it..
This will test your setup and make sure the NDK can work properly.
Nothing is said about where any of these things need to be installed to (what directory)
View 5 Replies
View Related
May 5, 2010
When I click on the app in App Brain it gives me a broken link but others are getting it to work and leave comments. Anyone else get Google Earth to Install on an Incredible?
View 12 Replies
View Related
Aug 11, 2010
I got an update notification and it downloads but will not install.Any ideas.
View 40 Replies
View Related
Aug 12, 2010
I'm having problems installing voice search, I get an error saying the app isn't signed. Is anyone else getting same problem?I'm running an unofficial Rom of Froyo, could this be the the problem?
View 10 Replies
View Related
Mar 22, 2010
I used root explorer to delete every trace of google maps on my sd card and on the droid. and when i go to market to download it, it says installation error, incompatible update. how can that be, when i don't have maps installed on my phone yet?
View 3 Replies
View Related
Jan 13, 2014
i have a Kurio 10 Tablet which im trying to get google play store installed on, ive tried downloading the apk and transferring it over from a computer but it doesnt load after installation
View 2 Replies
View Related
Aug 3, 2013
When I attempt to install the google music player from google play, it goes through the installation process, but then always says "Install" afterwards. It is never actually installed. I tried cycling power to my 7" Nook, but that did not work. I also checked for any hung process using the Elixer sysinfo tool, which did not work either.
Why the google music player won't install?
View 1 Replies
View Related
Apr 17, 2013
When I try to install any app from Google play store it all goes well until I press the 'accept and download' button and the app just goes back to main screen and the app is not installed. I am using Samsung Galaxy S3. I cleared the data of google play yesterday because I was getting these annoying messages which slowed my phone down (they were popping up every 2 seconds or so)
View 5 Replies
View Related