I'm using com.android.vending.INSTALL_REFERRER to track some
information about installation.
My application was working perfectly but suddenly does not works.
I can still catch the intent of INSTALL_REFERRER, but the contents of
extras has changed.

The download link url is something like that.
http://market.android.com/details?id=com.example.myreceiver&referrer=utm_source%3Dsource%26utm_medium%3Demail%26utm_campaign%3Dinvitation

I assume I can get the whole string of referrer with bellow.

@Override
public void onReceive(Context context, Intent intent) {

    Bundle extras = intent.getExtras();
    String referrerString = extras.getString("referrer");
    ....
}

But I got "details?doc=com.example.myreceiver".

Does anybody know how to get the correct strings?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to