Merge branch 'audiorecorder-3.2.34'

This commit is contained in:
Alexey Kuznetsov 2018-11-24 17:09:28 +03:00
commit d14504b90b
2 changed files with 11 additions and 7 deletions

View file

@ -10,15 +10,15 @@ android {
applicationId "com.github.axet.audiorecorder"
minSdkVersion 9
targetSdkVersion 26
versionCode 291
versionName "3.2.33"
versionCode 292
versionName "3.2.34"
}
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
storeFile file(prop('RELEASE_STORE_FILE')?:'none')
storePassword prop('RELEASE_STORE_PASSWORD')
keyAlias prop('RELEASE_KEY_ALIAS')
keyPassword prop('RELEASE_KEY_PASSWORD')
}
}
buildTypes {
@ -57,5 +57,5 @@ android {
dependencies {
testImplementation 'junit:junit:4.12'
implementation 'com.github.axet:android-audio-library:1.0.133' // implementation project(':android-audio-library')
implementation 'com.github.axet:android-audio-library:1.0.135' // implementation project(':android-audio-library')
}

View file

@ -25,3 +25,7 @@ task wrapper(type: Wrapper) {
task clean(type: Delete) {
delete rootProject.buildDir
}
def prop(String name) {
project.hasProperty(name) ? project.getProperty(name) : null
}