skip to Main Content

I want to know from where is installed my app from app store or test flight, from google play users or internal testers.

I tried use store_check package but it doesn’t help.
I don’t find the solution for that.
Is there other way to know it in Flutter?

3

Answers


  1. you can use this package to provide the path and all data about your app in flutter application
    here is an example for use :
    https://pub.dev/packages/path_provider/example

    Login or Signup to reply.
  2. You have 2 possibilities:

    • Create 2 flavors: one for production release on AppStore/PlayStore and a second for beta release on TestFlight &/or others.
    • You can also use this plugin to know store provider easilly without creating flavors: https://pub.dev/packages/install_referrer
    Login or Signup to reply.
  3. Implement two app configurations:

    Production: This configuration is intended for the final, publicly available version of the app, deployed on the App Store and Play Store.
    Beta: This configuration is designed for the beta testing phase, allowing a select group of users to access and provide feedback on the app before its official release. Utilize TestFlight or other beta testing platforms for distributing the beta version.
    Leverage the install_referrer plugin to effortlessly identify the app store provider without the need for additional flavors. This plugin simplifies the process of determining the source of app installation, whether it’s the App Store, Play Store, or another platform.

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