updating some libraries
This commit is contained in:
parent
0175a2ea60
commit
2751a99a12
|
@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 25
|
compileSdkVersion 25
|
||||||
buildToolsVersion "25.0.1"
|
buildToolsVersion "25.0.3"
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "com.simplemobiletools.thankyou"
|
applicationId "com.simplemobiletools.thankyou"
|
||||||
|
@ -38,7 +38,7 @@ dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.0.3'
|
ext.kotlin_version = '1.1.51'
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
@ -54,12 +54,11 @@ def propFile = new File('signing.properties')
|
||||||
if (propFile.canRead()) {
|
if (propFile.canRead()) {
|
||||||
props.load(new FileInputStream(propFile))
|
props.load(new FileInputStream(propFile))
|
||||||
|
|
||||||
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('STORE_PASSWORD') &&
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
||||||
props.containsKey('KEY_ALIAS') && props.containsKey('KEY_PASSWORD')) {
|
|
||||||
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
||||||
android.signingConfigs.release.storePassword = props['STORE_PASSWORD']
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
||||||
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
||||||
android.signingConfigs.release.keyPassword = props['KEY_PASSWORD']
|
android.signingConfigs.release.keyPassword = props['PASSWORD']
|
||||||
} else {
|
} else {
|
||||||
println 'signing.properties found but some entries are missing'
|
println 'signing.properties found but some entries are missing'
|
||||||
android.buildTypes.release.signingConfig = null
|
android.buildTypes.release.signingConfig = null
|
||||||
|
|
|
@ -5,7 +5,7 @@ buildscript {
|
||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:2.2.3'
|
classpath 'com.android.tools.build:gradle:2.3.3'
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#Mon Dec 28 10:00:20 PST 2015
|
#Thu Oct 26 17:27:58 CEST 2017
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
STORE_FILE=/path/to/your.keystore
|
STORE_FILE=/path/to/your.keystore
|
||||||
STORE_PASSWORD=yourkeypass
|
|
||||||
KEY_ALIAS=projectkeyalias
|
KEY_ALIAS=projectkeyalias
|
||||||
KEY_PASSWORD=yourkeypass
|
PASSWORD=yourpass
|
||||||
|
|
Loading…
Reference in New Issue