1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
Go to file
2019-07-05 11:40:43 +02:00
android Add compilation instructions 2019-06-24 18:28:11 +02:00
ios Initial commit 2019-04-21 10:34:27 +02:00
lib Can create posts 2019-07-05 11:40:43 +02:00
test Initial commit 2019-04-21 10:34:27 +02:00
.gitignore Initial commit 2019-04-21 10:34:27 +02:00
.metadata Initial commit 2019-04-21 10:34:27 +02:00
pubspec.lock Add posts with surveys support 2019-06-28 11:32:36 +02:00
pubspec.yaml Bump to version 1.0.1 2019-07-01 12:21:07 +02: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