I'm implementing some code to do my own referral tracking on downloads from the Android market.

See Android referral tracking does not work for an idea of what my app is doing.

How can I test if this code is working before deploying to the public?

link|improve this question

67% accept rate
feedback

4 Answers

up vote 22 down vote accepted

The easiest way is using adb. You don't have to write any code.

Just run in a terminal:

adb shell 
am broadcast -a com.android.vending.INSTALL_REFERRER -n <your.package>/.<path.up.until.your.BroadcastReceiver> --es "referrer" "utm_source=test_source&utm_medium=test_medium&utm_term=test_term&utm_content=test_content&utm_campaign=test_name"

Here's my exact line:

am broadcast -a com.android.vending.INSTALL_REFERRER -n net.lp.collectionista/.util.broadcast_receivers.FacadeBroadcastReceiver --es "referrer" "utm_source=test_source&utm_medium=test_medium&utm_term=test_term&utm_content=test_content&utm_campaign=test_name"

But your BroadcastReceiver may need to be the AnalyticsReceiver, i.e. <your.package>/com.google.android.apps.analytics.AnalyticsReceiver .

As Luigi said, you can also leave out the "-n" componentname part, but then every app on your device will receive the referral. This can be a good extra test to see if your BroadcastReceiver can be found properly.

The output I see (especially the last line is important):

05-13 17:28:08.335: D/Collectionista FacadeBroadcastReceiver(8525): Receiver called
05-13 17:28:08.335: V/Collectionista FacadeBroadcastReceiver(8525): Receiver called with action: com.android.vending.INSTALL_REFERRER
05-13 17:28:08.365: D/GoogleAnalyticsTracker(8525): Stored referrer:utmcsr=test_source|utmccn=test_name|utmcmd=test_medium|utmctr=test_term|utmcct=test_content
link|improve this answer
nice I didn't know you can do that from adb +1 – Luigi Agosti Aug 6 '11 at 14:27
what sample output u get can u add here – Khan May 4 at 9:26
@pjv i have test app get output but if i donwload app from play store than output is null can u exmplain little bit more – Khan May 4 at 10:45
@Khan, yeah, mine also has issues in real life, even problems in general with Google Analytics. Especially when you have a complex app and maybe more than one BroadcastReceiver. – pjv May 5 at 0:56
feedback

Trial by fire. Create a bunch of test apps to with different referral ids and link them to another app in the market that will catch the referral id.

link|improve this answer
feedback

No! you have a few way to test it

  1. use an app : https://market.android.com/details?id=com.giago.referraltester&feature=search_result
  2. send a broadcast manually with an intent of this form

    Intent i = new Intent("com.android.vending.INSTALL_REFERRER"); i.setPackage(com.package.yourapp) //referrer is a composition of the parameter of the campaing i.putExtra("referrer", referrer); sendBroadcast(i);

I work on it for a bit and I made an article about the argument if you want to figure out a bit more : http://www.dev-articles.com/article/Analytics-referral-tracking-for-Android-447001

link|improve this answer
feedback

Found a nice open-source tool that lets you scan the referral qrcode that you generate here, and it sends a broadcast intent with all the correct information.

https://github.com/giago/referraltester

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.