This causes errors like https://github.com/Lacerte/clima/issues/247#issuecomment-1117657630 if no key.properties file is present. Also, we never actually used this functionality (the APKs we used to release with each GitHub release were built using the debug signing config!), and it's still possible to sign an APK manually using apksigner.
Description
Remove signing config stuff from
build.gradle
.This causes errors like https://github.com/Lacerte/clima/issues/247#issuecomment-1117657630 if no
key.properties
file is present. Also, we never actually used this functionality (the APKs we used to release with each GitHub release were built using the debug signing config!), and it's still possible to sign an APK manually usingapksigner
.References
apksigner
: https://developer.android.com/studio/command-line/apksignerTesting
Try running
flutter build apk --release
andflutter build apk --debug
.Checklist
master
@WhyNotHugo you'll probably need to update your build manifest when this is merged.