I am referring to an other app, but that app doesn't receive my referrer url. It keeps showing the url that's shown after a normal installation from the PlayStore.
I can find lots of explanations for the receiving app, on how to read the referrerUrl with the "new" referrer library, but nothing on how to set my url when referring to an other app.
I expected that I wouldn't have to change anything. It used to work with the following code
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri.Builder uriBuilder = Uri.parse(PLAY_STORE_BASE_URL + TARGET_APP_BUNDLE_ID)
.buildUpon().appendQueryParameter(REFERRER_KEY, myUrl);
intent.setData(uriBuilder.build());
context.startActivity(intent);
when my receiving test app used the now deprecated com.android.vending.INSTALL_REFERRER