Skip to content

Commit

Permalink
Fixed #7
Browse files Browse the repository at this point in the history
Stupidly enough, the `key.properties` file was .gitignored and hadn't synced properly to my MacBook, hence the build failed.
  • Loading branch information
urmilshroff committed Sep 14, 2019
1 parent 4910df5 commit 392907b
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,23 +51,23 @@ android {
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

// signingConfigs {
// release {
// keyAlias keystoreProperties['keyAlias']
// keyPassword keystoreProperties['keyPassword']
// storeFile file(keystoreProperties['storeFile'])
// storePassword keystoreProperties['storePassword']
// }
// }
//
// buildTypes {
// release {
// signingConfig signingConfigs.release
// minifyEnabled false
// useProguard false
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
// }
// }
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}

buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
useProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

flutter {
Expand Down

0 comments on commit 392907b

Please sign in to comment.