Skip to content

Commit dd7af5c

Browse files
authored
fix: minor gradle change (#17)
1 parent e46c3e4 commit dd7af5c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

android/build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ ext {
33
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
44
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
55
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
6+
kotlinVersion = project.hasProperty('kotlinVersion') ? rootProject.ext.kotlinVersion : '1.7.10'
7+
coreKtx = project.hasProperty('coreKtx') ? rootProject.ext.coreKtx : '1.9.0'
8+
coroutinesVersion = project.hasProperty('coroutinesVersion') ? rootProject.ext.coroutinesVersion : '1.6.0'
9+
androidxLifecycleVersion = project.hasProperty('androidxLifecycleVersion') ? rootProject.ext.androidxLifecycleVersion : '2.5.1'
10+
groupieVersion = project.hasProperty('groupieVersion') ? rootProject.ext.groupieVersion : '2.9.0'
611
}
712

813
buildscript {
9-
ext.kotlinVersion = project.hasProperty('kotlinVersion') ? rootProject.ext.kotlinVersion : '1.7.10'
10-
ext.coreKtx = project.hasProperty('coreKtx') ? rootProject.ext.coreKtx : '1.9.0'
11-
ext.coroutinesVersion = project.hasProperty('coroutinesVersion') ? rootProject.ext.coroutinesVersion : '1.6.0'
12-
ext.androidxLifecycleVersion = project.hasProperty('androidxLifecycleVersion') ? rootProject.ext.androidxLifecycleVersion : '2.5.1'
13-
ext.groupieVersion = project.hasProperty('groupieVersion') ? rootProject.ext.groupieVersion : '2.9.0'
14-
1514
repositories {
1615
google()
1716
mavenCentral()

0 commit comments

Comments
 (0)