1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-22 22:43:22 +00:00
Go to file
2021-12-30 12:28:06 +01:00
android Update some Gradle dependencies 2021-12-28 19:03:37 +01:00
assets Add official email address in application settings 2021-04-30 18:50:46 +02:00
ios Remove Alpha channel on application icon 2021-05-05 19:15:09 +02:00
lib Show banner on welcome route 2021-12-30 12:28:06 +01:00
test Initial commit 2019-04-21 10:34:27 +02:00
web Run flutter create to add web files 2021-03-14 17:35:29 +01:00
.gitignore Update Gradle & Target sdk 32 2021-12-28 18:35:32 +01:00
.metadata Initial commit 2019-04-21 10:34:27 +02:00
build_all_comunic_releases.sh Update some Gradle dependencies 2021-12-28 19:03:37 +01:00
build_all_forez.sh Update some Gradle dependencies 2021-12-28 19:03:37 +01:00
build_comunic_ios.sh First iOS publish request 2021-05-05 11:36:19 +02:00
build_forez_ios.sh Add #Forez build script 2021-05-05 19:13:31 +02:00
flutter_launcher_icons-forez.yaml Generate launcher icons for #Forez on iOS 2021-04-28 08:57:37 +02:00
Makefile Can make Forez releases split per abis 2021-04-29 07:50:18 +02:00
pubspec.lock Update firebase_messaging dependency 2021-12-28 17:29:05 +01:00
pubspec.yaml Update firebase_messaging dependency 2021-12-28 17:29:05 +01:00
README.md Update README 2021-04-28 19:41:07 +02:00

comunic

A Comunic client written with flutter

Getting Started on Android

Flavors

Application appearance & Title

  • stable : For main releases
  • beta : For intermediate releases

Build types

Beta

No special configuration is required. Use the lib/main_dev.dart file as entrypoint to the application.

Releases

To make release builds, the application needs to be signed. Create a file named key.properties in the android directory with the following content:

storeFile=path to keystore file
storePassword=store password
keyAlias=key alias
keyPassword=key password
forezKeyAlias=key alias
forezKeyPassword=key password

Use the lib/main_online.dart as entry point to the application.

Building

Now choose a flavor and build the application using :

# Generic command
flutter build apk --flavor BUILD_FLAVOR -t ENTRY_POINT

# Example
flutter build apk --flavor beta -t lib/main_online.dart