Merge pull request #259 from twonlyapp/dev

add signing keys
This commit is contained in:
Tobi 2025-07-19 16:16:54 +02:00 committed by GitHub
commit 5279027862
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 1 deletions

View file

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

View file

@ -52,5 +52,13 @@ run-as eu.twonly.testing ls /data/user/0/eu.twonly.testing/
</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
This project is licensed under the [GNU AGPL 3.0](LICENSE) license.

View file

@ -33,7 +33,7 @@ android {
defaultConfig {
// 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
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
@ -52,6 +52,9 @@ android {
}
buildTypes {
debug {
applicationIdSuffix ".debug"
}
release {
signingConfig signingConfigs.release
}