url builderによって生成された play-store リンクがあります。アプリを紹介したリファラーを追跡するために、公式ドキュメントに記載されているキャンペーン測定を実装しました。しかし、アプリが既にインストールされている場合、URL を解析する方法がわかりません。公式の例によると:
// In this example, campaign information is set using
// a url string with Google Analytics campaign parameters.
// Note: This is for illustrative purposes. In most cases campaign
// information would come from an incoming Intent.
String campaignData = "http://examplepetstore.com/index.html?" +
"utm_source=email&utm_medium=email_marketing&utm_campaign=summer" +
"&utm_content=email_variation_1";
URL データをインテントに読み込む方法がわかりません。Play ストアの URL を解析するためにディープリンクを使用する必要がありますか?