简体   繁体   中英

How to track from button click on website of app through Google Play up to in-app purchase in Android app?

I would like to get information: How many people who went through the app website made an in-app purchase?

Funnel: Click to "Get it on Google Play" button on the website of app > install app via Google Play > in-app purchase in Android app.

Android app uses Firebase SDK. (I am advanced.)
App website uses Google Analytics v4. (I am beginner -- I set it up yesterday.)

Is it possible to connect/keep tracking from website of app via Google Play to Android app?

It would be great to see in Google Analytics: n% of people made in-app purchase after click to Download button on app website. or The similar information in Firebase.

Thank you.

solution for your purpose is to handle Dynamic Link with Deep link

declare your app launcher can open some dynamic link, eg yourapp://tracking.key/ (so also yourapp://tracking.key/<secret_key> )

then construct dynamic link (eg manually ), which will pass user to Play Store if app not installed. after installation and "Open" button press app will be opened with your deep link in intent and then you have "connection" between web click (cookie) and installed app ( <secret_key> ). then just track in app purchases reporting also obtained in app <secret_key>

if you don't want such precision you may just declare deep link as follow: yourapp://tracking.key/web_click

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM