skip to Main Content

we need to track our mobile app
for example :

first user share the app with second user via WhatsApp

now when second user installed the app and opens it

we need to send to our api server that he installed it via WhatsApp and google play or app store

I’m still searching for it

2

Answers


  1. There are quite a few ways to do it

    1. Use deep linking (flutter_branch_sdk, uni_links2) for your app to handle these custom referral links.

    2. Use plugin like package_info_plus to get information about where the app was installed.

    3. Add app analytics like firebase, adjust_sdk, kochava_tracker etc.

    Check pub.dev for more packages and versions

    Login or Signup to reply.
  2. Check this out for Google PlayStore
    https://developer.android.com/google/play/installreferrer
    Wrapper for this for flutter can be found at
    https://pub.dev/packages/android_play_install_referrer

    You can send link for playstore app via WhatsApp or any other medium, where each medium has unique referral code assigned

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search