Skip to content

Commit

Permalink
merge from master
Browse files Browse the repository at this point in the history
  • Loading branch information
weihuagu committed Jul 3, 2019
1 parent 8aba46a commit b66a311
Showing 1 changed file with 27 additions and 24 deletions.
51 changes: 27 additions & 24 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,34 +1,37 @@
def keystorePropertiesFile = rootProject.file("./app/key.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))

apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.weihuagu.receiptnotice"
minSdkVersion 19
targetSdkVersion 25
versionCode 11
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}


signingConfigs{
debug {
compileSdkVersion 27
defaultConfig {
applicationId "com.weihuagu.receiptnotice"
minSdkVersion 19
targetSdkVersion 25
versionCode 11
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

}
release {
}
}

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

}
release {
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
lintOptions {
abortOnError false
}
abortOnError false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
Expand Down

0 comments on commit b66a311

Please sign in to comment.