Skip to content

Release app

Sundin edited this page Mar 18, 2021 · 7 revisions

Android

(Full instructions here: https://flutter.dev/docs/deployment/android)

Get hold of the the key.jks file. Then add the following content to android/key.properties:

storePassword=<password from previous step>
keyPassword=<password from previous step>
keyAlias=key
storeFile=<location of the key store file, such as /Users/<user name>/key.jks>

Remember to bump build number in pubspec.yaml.

Build .aab bundle:

cd frontend/hompi
flutter build appbundle --release

Upload it to https://play.google.com/console

iOS

(Full instructions here: https://flutter.dev/docs/deployment/ios)

Produce build artifact:

Run flutter build ipa or open Runner.xcworkspace in Xcode and select Product > Archive.

Submit for review or publish to TestFlight at https://appstoreconnect.apple.com

Clone this wiki locally