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
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
You have 2 possibilities:
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.