Skip to content
This repository was archived by the owner on Aug 18, 2021. It is now read-only.

Commit 583b30a

Browse files
committed
update: build.gradle
1 parent c3cc334 commit 583b30a

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66

77
def versionMajor = 1
88
def versionMinor = 1
9-
def versionPatch = 0
9+
def versionPatch = 1
1010

1111
def projectVersionCode = (versionMajor*100) + (versionMinor*10) + (versionPatch*1)
1212
def projectVersionName = "$versionMajor.$versionMinor.$versionPatch"
@@ -45,8 +45,8 @@ android {
4545
dependencies {
4646
implementation fileTree(dir: 'libs', include: ['*.jar'])
4747
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
48-
implementation 'androidx.appcompat:appcompat:1.2.0'
49-
implementation 'androidx.core:core-ktx:1.3.2'
48+
implementation 'androidx.appcompat:appcompat:1.3.0'
49+
implementation 'androidx.core:core-ktx:1.5.0'
5050
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
5151

5252
// library google
@@ -55,14 +55,14 @@ dependencies {
5555
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
5656

5757
// Glide
58-
implementation 'com.github.bumptech.glide:glide:4.11.0'
58+
implementation 'com.github.bumptech.glide:glide:4.12.0'
5959
kapt 'com.github.bumptech.glide:compiler:4.11.0'
6060

6161
// library frogo-recycler-view
62-
implementation 'com.github.amirisback:frogo-recycler-view:3.5.0'
62+
implementation 'com.github.amirisback:frogo-recycler-view:3.7.1'
6363

6464
// library frogo-ui-kit
65-
implementation 'com.github.amirisback:frogo-ui-kit:1.0.5'
65+
implementation 'com.github.amirisback:frogo-ui-kit:2.0.1'
6666

6767
implementation project(':frogothesportdbapi')
6868

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
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.5.0'
4+
ext.kotlin_version = '1.5.20'
55
repositories {
66
google()
77
mavenCentral()
88

99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:4.2.0'
11+
classpath 'com.android.tools.build:gradle:4.2.1'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files

frogothesportdbapi/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ android {
55

66
def versionMajor = 1
77
def versionMinor = 1
8-
def versionPatch = 0
8+
def versionPatch = 1
99

1010
def projectVersionCode = (versionMajor*100) + (versionMinor*10) + (versionPatch*1)
1111
def projectVersionName = "$versionMajor.$versionMinor.$versionPatch"
@@ -49,19 +49,19 @@ android {
4949
dependencies {
5050
implementation fileTree(dir: 'libs', include: ['*.jar'])
5151
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
52-
implementation 'androidx.core:core-ktx:1.3.2'
52+
implementation 'androidx.core:core-ktx:1.5.0'
5353

5454
implementation 'com.google.code.gson:gson:2.8.6'
5555

5656
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
5757
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'
5858
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
59-
implementation 'com.squareup.okhttp3:logging-interceptor:4.8.1'
59+
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.0'
6060

6161
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
6262
implementation 'com.readystatesoftware.chuck:library:1.1.0'
6363

6464
// library frogo-log
65-
implementation 'com.github.amirisback:frogo-log:2.0.0'
65+
implementation 'com.github.amirisback:frogo-log:2.0.1'
6666

6767
}

0 commit comments

Comments
 (0)