Skip to content
This repository has been archived by the owner on Sep 10, 2022. It is now read-only.

Commit

Permalink
Prevented running on release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusrp98 committed Apr 2, 2019
1 parent 48b2faa commit 1f515bb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

// signingConfigs {
// release{
// keyAlias keystoreProperties['keyAlias']
// keyPassword keystoreProperties['keyPassword']
// storeFile file(keystoreProperties['storeFile'])
// storePassword keystoreProperties['storePassword']
// }
// }
signingConfigs {
release{
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}

buildTypes {
release {
signingConfig signingConfigs.debug
signingConfig signingConfigs.release
}
}
}
Expand Down

0 comments on commit 1f515bb

Please sign in to comment.