From af396eb97499514ee2b9edb5684a4ae47d3d6dd6 Mon Sep 17 00:00:00 2001 From: terrakok Date: Tue, 20 Jul 2021 20:58:44 +0300 Subject: [PATCH] Bump version to '7.1' --- build.gradle | 11 ++++------- gradle/wrapper/gradle-wrapper.properties | 2 +- library/build.gradle | 2 +- sample/build.gradle | 12 ++++++------ 4 files changed, 12 insertions(+), 15 deletions(-) diff --git a/build.gradle b/build.gradle index 226204d..86f2c92 100644 --- a/build.gradle +++ b/build.gradle @@ -1,24 +1,21 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.4.10' + ext.kotlin_version = '1.5.21' repositories { - jcenter() + mavenCentral() google() } dependencies { - classpath 'com.android.tools.build:gradle:4.1.0' + classpath 'com.android.tools.build:gradle:4.2.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - - // For the library uploading to the Bintray - classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' } } allprojects { repositories { - jcenter() + mavenCentral() google() } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a32da33..5bf9d3f 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip diff --git a/library/build.gradle b/library/build.gradle index 19c99ec..aaff7da 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -14,7 +14,7 @@ dependencies { ext { publishedGroupId = 'com.github.terrakok' artifact = 'cicerone' - libraryVersion = '7.0' + libraryVersion = '7.1' } project.archivesBaseName = artifact // to fix that project name different from artifact name diff --git a/sample/build.gradle b/sample/build.gradle index b117fc6..50a2385 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-kapt' repositories { - jcenter() + mavenCentral() } android { @@ -42,10 +42,10 @@ android { } ext { - androidXVersion = "1.2.0" - materialVersion = "1.2.1" - moxyVersion = "2.2.0" - daggerVersion = "2.29.1" + androidXVersion = "1.3.0" + materialVersion = "1.4.0" + moxyVersion = "2.2.2" + daggerVersion = "2.38" } dependencies { @@ -69,5 +69,5 @@ dependencies { implementation ('com.ashokvarma.android:bottom-navigation-bar:1.3.0') { exclude group: "com.android.support", module: "design" } - implementation "androidx.core:core-ktx:1.3.2" + implementation "androidx.core:core-ktx:1.6.0" }