简体   繁体   中英

How to send a flutter app to client for testing

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?

You will need to do the following in the command line:

$ cd <project-folder>
$ flutter build apk
$ flutter build ios

References:

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.

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