Skip to content

Instantly share code, notes, and snippets.

@jigarfumakiya
Created July 31, 2021 09:29
Show Gist options
  • Save jigarfumakiya/94e55f5ba0a9260c98bed815e45f22c8 to your computer and use it in GitHub Desktop.
Save jigarfumakiya/94e55f5ba0a9260c98bed815e45f22c8 to your computer and use it in GitHub Desktop.
Flutter generate android & iOS build.
Creating the Android build.
1)Go to your project root folder (open terminal that path.)
2)Run flutter build --release you can remove release if you want.
then you will find your apk in Project root->build->app->outputs->flutter-apk->your apk.
Creating IOS build.
1)Go to your project root folder (open terminal that path.)
2)Run flutter build ios.
3)After the above command is successful you get the runner path in your terminal.
Generally it will be project root->build->ios->iphoneos
4)Here you will find your runner file.
5)Create a new folder in the same directory with the Payload name. (Case-sensitive)
6)Move your runner file to the Payload folder to compress it.
7)Change the extension to zip to IPA.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment