We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
flutter run
1 parent 3d2b76e commit 895a769Copy full SHA for 895a769
src/docs/deployment/android-release.md
@@ -104,9 +104,11 @@ Configure signing for your app by editing the
104
```
105
with the keystore information from your properties file:
106
107
- def keystorePropertiesFile = rootProject.file("key.properties")
108
def keystoreProperties = new Properties()
109
- keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
+ def keystorePropertiesFile = rootProject.file('key.properties')
+ if (keystorePropertiesFile.exists()) {
110
+ keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
111
+ }
112
113
android {
114
0 commit comments