Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
texting extracting commit message
  • Loading branch information
wendreof committed Oct 2, 2021
1 parent 327ef5e commit bb6fa83
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ if (localPropertiesFile.exists()) {
}
}

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
def flutterVersionCode = keystorePropertiesFile.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
Expand All @@ -29,12 +33,6 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}

android {
compileSdkVersion 30

Expand Down

0 comments on commit bb6fa83

Please sign in to comment.