From 848ad5220e097e3af4363eb4868c64fd5cbca7c6 Mon Sep 17 00:00:00 2001 From: Fabio Date: Wed, 11 Jun 2025 16:38:06 +0800 Subject: [PATCH] Aggiorna README.md --- README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/README.md b/README.md index b571f651b..92a26a450 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,38 @@ To run the app: ``` # ./flutterw run -t lib/main_play.dart --flavor play ``` +To build the app: + +creare file con le tue credenziali file.keystore + +dove YOUR_ALIAS_NAME è il tuo unico alias name + +e YOUR_ALIAS_PWD è la password del tuo alias +``` +# +keytool -genkey -v -keystore file.keystore -alias YOUR_ALIAS_NAME -storepass YOUR_ALIAS_PWD -keypass YOUR_ALIAS_PWD -keyalg RSA -validity 36500 +``` +in questo caso ho inserito +``` +# cd android +# keytool -genkey -v -keystore file.keystore -alias FabioMich66 -storepass Master66 -keypass Master66 -keyalg RSA -validity 36500 +``` +compilare il file `/android/key.properties` +``` +# nano android/key.properties +``` +questi i miei dati utilizzando il format key_template.properties +``` +storeFile=/Users/fabio/flutter_apps/aves/android/file.keystore +storePassword=Master66 +keyAlias=FabioMich66 +keyPassword=Master66 +googleApiKey= +``` +infine compilare l'apk +``` +# ./flutterw build apk -t lib/main_play.dart --flavor play +``` [Version badge]: https://img.shields.io/github/v/release/deckerst/aves?include_prereleases&sort=semver [Build badge]: https://img.shields.io/github/actions/workflow/status/deckerst/aves/quality-check.yml?branch=develop