A new Flutter project.
- Flutter 2.10.1
- Android Studio Bumblebee (2021.1.1)
- Java >= 8
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
Add the following content to android/key.properties
storePassword=<password>
keyPassword=<password>
keyAlias=<alias>
storeFile=<path to .jks file>Note: To sign the app to be uploaded to the store, you need download these files, including the keystore, from our KeyStore Passwords (lastpass).
Set the version in the pubsec.yaml:
# version: X.X.X+<build number>
version: 1.2.3+9flutter build appbundle --dart-define=ENVIRONMENT=<PROD,STAGING,DEV> --build-number=18 --build-name=0.1.16
flutter build apk --dart-define=ENVIRONMENT=<PROD,STAGING,DEV> --build-number=18 --build-name=0.1.16flutter build ipa --dart-define=ENVIRONMENT=<PROD,STAGING,DEV> --build-number=18 --build-name=0.1.16flutter build appbundle --profile --dart-define=ENVIRONMENT=<PROD,STAGING,DEV> --build-number=18 --build-name=0.1.16
flutter build apk --profile--dart-define=ENVIRONMENT=<PROD,STAGING,DEV> --build-number=18 --build-name=0.1.16flutter build ipa --profile--dart-define=ENVIRONMENT=<PROD,STAGING,DEV> --build-number=18 --build-name=0.1.16flutter build appbundle --debug --dart-define=ENVIRONMENT=<PROD,STAGING,DEV> --build-number=18 --build-name=0.1.16
flutter build apk --debug --dart-define=ENVIRONMENT=<PROD,STAGING,DEV> --build-number=18 --build-name=0.1.16flutter build ipa --debug --dart-define=ENVIRONMENT=<PROD,STAGING,DEV> --build-number=18 --build-name=0.1.16