Skip to content

Commit

Permalink
Updating libs and tools versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvasilkov committed Jul 30, 2019
1 parent f0a4c26 commit 9865068
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 21 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.android.tools.build:gradle:3.4.2'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
}

dependencies {
compileOnly 'androidx.annotation:annotation:1.0.0'
compileOnly 'androidx.annotation:annotation:1.1.0'
compileOnly 'androidx.viewpager:viewpager:1.0.0'
compileOnly 'androidx.recyclerview:recyclerview:1.0.0'
}
Expand Down
12 changes: 4 additions & 8 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
buildscript {
dependencies {
classpath 'com.github.triplet.gradle:play-publisher:1.2.0'
}
plugins {
id 'com.android.application'
id 'com.github.triplet.play' version '2.2.1'
}

apply plugin: 'com.android.application'
apply plugin: 'com.github.triplet.play'

apply from: 'commons.gradle'
apply from: 'release.gradle'

Expand Down Expand Up @@ -42,7 +38,7 @@ dependencies {
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'com.google.android.material:material:1.0.0'

implementation 'com.github.bumptech.glide:glide:4.8.0'
implementation 'com.github.bumptech.glide:glide:4.9.0'

implementation 'com.alexvasilkov:android-commons:2.0.2'
implementation 'com.alexvasilkov:events:1.0.0'
Expand Down
15 changes: 5 additions & 10 deletions sample/release.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,6 @@
final DIR = 'sample/signing'

android {
playAccountConfigs {
config {
jsonFile = file('signing/play_account.json')
}
}

defaultConfig {
playAccountConfig = playAccountConfigs.config
}

signingConfigs {
debug {
storeFile file('signing/debug.jks')
Expand All @@ -33,6 +23,11 @@ android {
}
}

play {
serviceAccountCredentials = file('signing/play_account.json')
track = 'alpha'
}

project.afterEvaluate {
// Setting up 'publishSample' task
// Note, that in order to work this task requires ENCRYPT_KEY and UPLOAD_KEYSTORE_PWD env vars
Expand Down

0 comments on commit 9865068

Please sign in to comment.