Hello,
I'm just using the feature to pass referrer info to the app, that is who directed the user to install the app, every referrer has its own Q code URL.
The way to have it working is to use a Static Intent Catcher.
At the Manifest:
AddPermission(com.android.vending.INSTALL_REFERRER)
AddReceiverText(Starter,
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>)
And in the Starter Service:
Sub Service_Start (StartingIntent As Intent)
' check google play referrer
If StartingIntent.Action = "com.android.vending.INSTALL_REFERRER" Then
'
https://play.google.com/store/apps/details?id=com.Wardian&referrer=referrer=123456789&sponsor=jose
' referrer
' validation & conforming
Dim Referrer As String = StartingIntent.GetExtra("referrer")
End If
Regards.