Skip to content

Commit af396eb

Browse files
committed
Bump version to '7.1'
1 parent b37a6c9 commit af396eb

File tree

4 files changed

+12
-15
lines changed

4 files changed

+12
-15
lines changed

build.gradle

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.4.10'
4+
ext.kotlin_version = '1.5.21'
55
repositories {
6-
jcenter()
6+
mavenCentral()
77
google()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:4.1.0'
10+
classpath 'com.android.tools.build:gradle:4.2.2'
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
12-
13-
// For the library uploading to the Bintray
14-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
1512
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1613
}
1714
}
1815

1916
allprojects {
2017
repositories {
21-
jcenter()
18+
mavenCentral()
2219
google()
2320
}
2421
}

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip

library/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies {
1414
ext {
1515
publishedGroupId = 'com.github.terrakok'
1616
artifact = 'cicerone'
17-
libraryVersion = '7.0'
17+
libraryVersion = '7.1'
1818
}
1919

2020
project.archivesBaseName = artifact // to fix that project name different from artifact name

sample/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-kapt'
44

55
repositories {
6-
jcenter()
6+
mavenCentral()
77
}
88

99
android {
@@ -42,10 +42,10 @@ android {
4242
}
4343

4444
ext {
45-
androidXVersion = "1.2.0"
46-
materialVersion = "1.2.1"
47-
moxyVersion = "2.2.0"
48-
daggerVersion = "2.29.1"
45+
androidXVersion = "1.3.0"
46+
materialVersion = "1.4.0"
47+
moxyVersion = "2.2.2"
48+
daggerVersion = "2.38"
4949
}
5050

5151
dependencies {
@@ -69,5 +69,5 @@ dependencies {
6969
implementation ('com.ashokvarma.android:bottom-navigation-bar:1.3.0') {
7070
exclude group: "com.android.support", module: "design"
7171
}
72-
implementation "androidx.core:core-ktx:1.3.2"
72+
implementation "androidx.core:core-ktx:1.6.0"
7373
}

0 commit comments

Comments
 (0)