Skip to content

Commit

Permalink
Updated libs and tools versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvasilkov committed Feb 4, 2020
1 parent 3e95330 commit af741e3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 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.4.2'
classpath 'com.android.tools.build:gradle:3.5.3'
}
}

Expand Down
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Tue Feb 04 14:18:05 NOVT 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
10 changes: 6 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
apply plugin: 'com.android.library'
plugins {
id 'com.android.library'
}

android {
compileSdkVersion 28
compileSdkVersion 29

defaultConfig {
minSdkVersion 14
targetSdkVersion 28
targetSdkVersion 29
versionCode VERSION_CODE.toInteger()
versionName VERSION_NAME
}
Expand All @@ -14,7 +16,7 @@ android {
dependencies {
compileOnly 'androidx.annotation:annotation:1.1.0'
compileOnly 'androidx.viewpager:viewpager:1.0.0'
compileOnly 'androidx.recyclerview:recyclerview:1.0.0'
compileOnly 'androidx.recyclerview:recyclerview:1.1.0'
}

// New version can be uploaded with './gradlew clean :library:uploadArchives'
Expand Down
10 changes: 5 additions & 5 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ apply from: 'commons.gradle'
apply from: 'release.gradle'

android {
compileSdkVersion 28
compileSdkVersion 29

defaultConfig {
minSdkVersion 16
targetSdkVersion 28
targetSdkVersion 29

setupVersion '2.5.2'
setOutputFileName 'gesture-views'
Expand All @@ -34,11 +34,11 @@ android {
dependencies {
implementation project(':library')

implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'com.google.android.material:material:1.0.0'

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

implementation 'com.alexvasilkov:android-commons:2.0.2'
implementation 'com.alexvasilkov:events:1.0.0'
Expand Down

0 comments on commit af741e3

Please sign in to comment.