How to send a flutter app to client for testing

Viewed 1672

I have developed a flutter application and I want my clients to test it, how do I send both(android and iOS) applications for testing to them. I do not want them to get the source code, I just want the app to run on their mobile device so that they can test it.

Is there any way to do this?

2 Answers

While you can certainly build an APK or iOS package and distribute them, getting them on people's phones is not as easy as a normal client might want. If your client is non-technical, they may prefer the way they normally get apps on their devices.

Both Google Playstore and Apple Appstore have programs to distribute apps to testers before the final release. You can set up testing in the Play Console. With Apple, it's called Testflight.

This way, you can give your client the actual feeling of an app almost done, not just a hacky file they need to somehow get onto their phone with your help.

It is also a good test run to see if you have set up the store connection correctly.

Related