add signing keys

This commit is contained in:
otsmr 2025-07-19 16:16:15 +02:00
parent e2be7aac5b
commit e9fd8726c9
3 changed files with 14 additions and 1 deletions

View file

@ -5,6 +5,8 @@ on:
push: push:
branches: branches:
- dev - dev
paths:
- lib/**/*.dart
jobs: jobs:
build_and_publish: build_and_publish:

View file

@ -52,5 +52,13 @@ run-as eu.twonly.testing ls /data/user/0/eu.twonly.testing/
</details> </details>
## Signing Keys
When you download the app **via GitHub** you can verify the signing keys using for example the [AppVerifyer](https://github.com/soupslurpr/AppVerifier) and the following SHA-256 fingerprint of the signing certificate.
eu.twonly
E3:C4:4D:56:8C:67:F9:32:AC:8C:33:90:99:8A:B9:5E:E8:FF:2D:7A:07:3C:24:E3:66:77:93:E6:EA:CD:77:0A
## License ## License
This project is licensed under the [GNU AGPL 3.0](LICENSE) license. This project is licensed under the [GNU AGPL 3.0](LICENSE) license.

View file

@ -33,7 +33,7 @@ android {
defaultConfig { defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "eu.twonly" applicationId = "eu.twonly.testing"
multiDexEnabled true multiDexEnabled true
// You can update the following values to match your application needs. // You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config. // For more information, see: https://flutter.dev/to/review-gradle-config.
@ -52,6 +52,9 @@ android {
} }
buildTypes { buildTypes {
debug {
applicationIdSuffix ".debug"
}
release { release {
signingConfig signingConfigs.release signingConfig signingConfigs.release
} }