xxxxxxxxxx
flutter pub publish --dry-run /// run this before publishing the package
flutter pub publish /// when ready to publish
Build and release android app - SigningConfigs
xxxxxxxxxx
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}