1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-22 22:43:22 +00:00
Go to file
2021-03-16 19:01:50 +01:00
android Run flutter create to add web files 2021-03-14 17:35:29 +01:00
assets Fix typo 2021-03-13 19:08:23 +01:00
ios Run flutter create to add web files 2021-03-14 17:35:29 +01:00
lib Add about tab 2021-03-16 19:01:50 +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 Updated Flutter, Gradle & migrated to android x 2020-03-24 13:15:49 +01:00
.metadata Initial commit 2019-04-21 10:34:27 +02:00
Makefile Use cleartext traffic in beta 2021-03-13 18:37:39 +01:00
pubspec.lock Can crop image 2021-03-13 17:50:59 +01:00
pubspec.yaml Start to work on a new version of the application 2021-03-14 15:16:01 +01:00
README.md Add compilation instructions 2019-06-24 18:28:11 +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:

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

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