File tree Expand file tree Collapse file tree 4 files changed +15
-8
lines changed
feature-search/src/main/res/layout Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -72,8 +72,9 @@ dependencies {
72
72
implementation(deps.timber)
73
73
74
74
testImplementation(deps.test.junit)
75
- androidTestImplementation(deps.test.androidxJunit)
76
- androidTestImplementation(deps.test.androidXSspresso)
75
+ androidTestImplementation(deps.test.androidx.junit)
76
+ androidTestImplementation(deps.test.androidx.core)
77
+ androidTestImplementation(deps.test.androidx.espresso.core)
77
78
78
79
addUnitTest()
79
80
testImplementation(testUtils)
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ buildscript {
13
13
maven(url = " https://oss.sonatype.org/content/repositories/snapshots" )
14
14
}
15
15
dependencies {
16
- classpath(" com.android.tools.build:gradle:7.0.4 " )
16
+ classpath(" com.android.tools.build:gradle:7.1.0 " )
17
17
classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion " )
18
18
classpath(" com.diffplug.spotless:spotless-plugin-gradle:6.2.0" )
19
19
classpath(" dev.ahmedmourad.nocopy:nocopy-gradle-plugin:1.4.0" )
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ object appConfig {
27
27
28
28
object deps {
29
29
object androidx {
30
- const val appCompat = " androidx.appcompat:appcompat:1.4.0 "
30
+ const val appCompat = " androidx.appcompat:appcompat:1.4.1 "
31
31
const val coreKtx = " androidx.core:core-ktx:1.7.0"
32
32
const val constraintLayout = " androidx.constraintlayout:constraintlayout:2.1.1"
33
33
const val recyclerView = " androidx.recyclerview:recyclerview:1.2.1"
@@ -60,7 +60,7 @@ object deps {
60
60
}
61
61
62
62
object koin {
63
- private const val version = " 3.1.4 "
63
+ private const val version = " 3.1.5 "
64
64
65
65
const val core = " io.insert-koin:koin-core:$version "
66
66
const val android = " io.insert-koin:koin-android:$version "
@@ -79,8 +79,15 @@ object deps {
79
79
80
80
object test {
81
81
const val junit = " junit:junit:4.13.2"
82
- const val androidxJunit = " androidx.test.ext:junit:1.1.2"
83
- const val androidXSspresso = " androidx.test.espresso:espresso-core:3.3.0"
82
+
83
+ object androidx {
84
+ const val core = " androidx.test:core-ktx:1.4.0"
85
+ const val junit = " androidx.test.ext:junit-ktx:1.1.3"
86
+
87
+ object espresso {
88
+ const val core = " androidx.test.espresso:espresso-core:3.4.0"
89
+ }
90
+ }
84
91
85
92
const val mockk = " io.mockk:mockk:1.12.1"
86
93
const val kotlinJUnit = " org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion "
Original file line number Diff line number Diff line change 4
4
xmlns : tools =" http://schemas.android.com/tools"
5
5
android : layout_width =" match_parent"
6
6
android : layout_height =" wrap_content"
7
- android : background =" ?attr/colorSurface"
8
7
tools : layout_width =" 150dp" >
9
8
10
9
<androidx .appcompat.widget.AppCompatImageView
You can’t perform that action at this time.
0 commit comments