diff --git a/build.gradle b/build.gradle index 2f403134..abc952d1 100644 --- a/build.gradle +++ b/build.gradle @@ -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' } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index caf54fa2..94130d9d 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -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 diff --git a/library/build.gradle b/library/build.gradle index cd20ed5f..12c90119 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -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 } @@ -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' diff --git a/sample/build.gradle b/sample/build.gradle index 36cd843f..8bd4c6a7 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -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' @@ -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'