File tree Expand file tree Collapse file tree 7 files changed +17
-38
lines changed Expand file tree Collapse file tree 7 files changed +17
-38
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -93,13 +93,13 @@ dependencies {
93
93
implementation project(' :instead' )
94
94
95
95
// Support libraries
96
- implementation ' androidx.appcompat:appcompat:1.3.0 '
97
- implementation ' com.google.android.material:material:1.3 .0'
98
- implementation " androidx.fragment:fragment-ktx:1.3.4 "
99
- implementation ' androidx.preference:preference-ktx:1.1.1 '
100
- implementation ' androidx.recyclerview:recyclerview:1.2.0 '
96
+ implementation " androidx.appcompat:appcompat:$r ootProject . appcompat_version "
97
+ implementation ' com.google.android.material:material:1.4 .0'
98
+ implementation " androidx.fragment:fragment-ktx:1.3.6 "
99
+ implementation " androidx.preference:preference-ktx:$r ootProject . preference_ktx_version "
100
+ implementation ' androidx.recyclerview:recyclerview:1.2.1 '
101
101
implementation ' androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
102
- implementation ' androidx.constraintlayout:constraintlayout:2.0.4 '
102
+ implementation ' androidx.constraintlayout:constraintlayout:2.1.0 '
103
103
104
104
// Architecture components
105
105
implementation " androidx.lifecycle:lifecycle-viewmodel-ktx:$rootProject . lifecycle_version "
Original file line number Diff line number Diff line change @@ -14,19 +14,21 @@ buildscript {
14
14
15
15
kotlin_version = ' 1.4.31'
16
16
kotlin_coroutines_version = ' 1.4.1'
17
- hilt_version = ' 2.36 '
17
+ hilt_version = ' 2.38.1 '
18
18
lifecycle_version = ' 2.3.1'
19
19
room_version = ' 2.3.0'
20
20
navigation_version = ' 2.3.5'
21
21
acraVersion = ' 5.7.0'
22
22
commons_io_version = ' 2.5' // 2.6 crashes the application on Android below 8, because java.nio.file is not available in these versions
23
+ appcompat_version = ' 1.3.1'
24
+ preference_ktx_version = ' 1.1.1'
23
25
}
24
26
repositories {
25
- jcenter ()
27
+ mavenCentral ()
26
28
google()
27
29
}
28
30
dependencies {
29
- classpath ' com.android.tools.build:gradle:4.2 .1'
31
+ classpath ' com.android.tools.build:gradle:7.0 .1'
30
32
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
31
33
classpath " com.google.dagger:hilt-android-gradle-plugin:$hilt_version "
32
34
classpath " de.mannodermaus.gradle.plugins:android-junit5:1.6.2.0"
@@ -39,7 +41,7 @@ plugins {
39
41
40
42
allprojects {
41
43
repositories {
42
- jcenter ()
44
+ mavenCentral ()
43
45
google()
44
46
}
45
47
}
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ android {
12
12
defaultConfig {
13
13
minSdkVersion rootProject. min_sdk_version
14
14
targetSdkVersion rootProject. compile_sdk_version
15
- versionCode rootProject. version_code
16
- versionName rootProject. version_name
17
15
18
16
consumerProguardFiles " consumer-rules.pro"
19
17
}
@@ -40,8 +38,8 @@ android {
40
38
41
39
dependencies {
42
40
43
- implementation ' androidx.appcompat:appcompat:1.3.0 '
44
- implementation ' androidx.preference:preference-ktx:1.1.1 '
41
+ implementation " androidx.appcompat:appcompat:$r ootProject . appcompat_version "
42
+ implementation " androidx.preference:preference-ktx:$r ootProject . preference_ktx_version "
45
43
46
44
// Kotlin
47
45
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$rootProject . kotlin_version "
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ android {
12
12
defaultConfig {
13
13
minSdkVersion rootProject. min_sdk_version
14
14
targetSdkVersion rootProject. compile_sdk_version
15
- versionCode rootProject. version_code
16
- versionName rootProject. version_name
17
15
18
16
consumerProguardFiles " consumer-rules.pro"
19
17
}
@@ -40,7 +38,7 @@ android {
40
38
41
39
dependencies {
42
40
43
- implementation ' androidx.appcompat:appcompat:1.3.0 '
41
+ implementation " androidx.appcompat:appcompat:$r ootProject . appcompat_version "
44
42
45
43
// Kotlin
46
44
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$rootProject . kotlin_version "
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.7.1 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.0.2 -all.zip
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ android {
12
12
defaultConfig {
13
13
minSdkVersion rootProject. min_sdk_version
14
14
targetSdkVersion rootProject. compile_sdk_version
15
- versionCode rootProject. version_code
16
- versionName rootProject. version_name
17
15
18
16
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
19
17
@@ -76,7 +74,7 @@ dependencies {
76
74
implementation project(' :core-storage' )
77
75
implementation project(' :core-preferences' )
78
76
79
- implementation ' androidx.appcompat:appcompat:1.3.0 '
77
+ implementation " androidx.appcompat:appcompat:$r ootProject . appcompat_version "
80
78
81
79
// Kotlin
82
80
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$rootProject . kotlin_version "
@@ -85,10 +83,6 @@ dependencies {
85
83
// DI
86
84
implementation " com.google.dagger:hilt-android:$rootProject . hilt_version "
87
85
kapt " com.google.dagger:hilt-android-compiler:$rootProject . hilt_version "
88
-
89
- testImplementation ' junit:junit:4.13.2'
90
- androidTestImplementation ' androidx.test.ext:junit:1.1.2'
91
- androidTestImplementation ' androidx.test.espresso:espresso-core:3.3.0'
92
86
}
93
87
94
88
task deleteDependencies (type : Delete ) {
You can’t perform that action at this time.
0 commit comments