add instructions to add keystore

This commit is contained in:
Dr.Blank 2024-12-08 03:43:46 +05:30
parent 6c50821682
commit 77f7a7e3b5
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
2 changed files with 15 additions and 1 deletions

View file

@ -50,7 +50,7 @@ jobs:
run: flutter build apk --release
- name: Rename Universal APK
run: mv build/app/outputs/flutter-apk/{app-release,app-release-universal}.apk
run: mv build/app/outputs/flutter-apk/{app-release,app-universal-release}.apk
- name: Build App Bundle
run: flutter build appbundle --release

View file

@ -153,6 +153,20 @@ Vaani uses Git submodules to manage interconnected components. This means each s
- Specify if changes affect specific submodules
- Ensure all CI checks pass
### Signing the app
once the keystore is created, you can sign the app with the keystore.
but for github action you need to make a base64 encoded string of the keystore.
```bash
# convert keystore to base64
cat android/key.properties | base64 > key.base64
# convert keystore to base64
cat android/upload.jks | base64 > keystore.base64
```
## Communication
* [Open an Issue](https://github.com/Dr-Blank/Vaani/issues)