13700 update flutter 1.9

This commit is contained in:
nikitateplyakov
2020-02-27 22:23:31 +03:00
parent 09236e2518
commit a41b30f295
6 changed files with 48 additions and 60 deletions

View File

@@ -1,8 +1,8 @@
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withInputStream { stream ->
localProperties.load(stream)
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
@@ -48,6 +48,7 @@ android {
signingConfig signingConfigs.debug
}
release {
shrinkResources false
minifyEnabled false
signingConfig signingConfigs.release
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'