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 {
7272 implementation(deps.timber)
7373
7474 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)
7778
7879 addUnitTest()
7980 testImplementation(testUtils)
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ buildscript {
1313 maven(url = " https://oss.sonatype.org/content/repositories/snapshots" )
1414 }
1515 dependencies {
16- classpath(" com.android.tools.build:gradle:7.0.4 " )
16+ classpath(" com.android.tools.build:gradle:7.1.0 " )
1717 classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion " )
1818 classpath(" com.diffplug.spotless:spotless-plugin-gradle:6.2.0" )
1919 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 {
2727
2828object deps {
2929 object androidx {
30- const val appCompat = " androidx.appcompat:appcompat:1.4.0 "
30+ const val appCompat = " androidx.appcompat:appcompat:1.4.1 "
3131 const val coreKtx = " androidx.core:core-ktx:1.7.0"
3232 const val constraintLayout = " androidx.constraintlayout:constraintlayout:2.1.1"
3333 const val recyclerView = " androidx.recyclerview:recyclerview:1.2.1"
@@ -60,7 +60,7 @@ object deps {
6060 }
6161
6262 object koin {
63- private const val version = " 3.1.4 "
63+ private const val version = " 3.1.5 "
6464
6565 const val core = " io.insert-koin:koin-core:$version "
6666 const val android = " io.insert-koin:koin-android:$version "
@@ -79,8 +79,15 @@ object deps {
7979
8080 object test {
8181 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+ }
8491
8592 const val mockk = " io.mockk:mockk:1.12.1"
8693 const val kotlinJUnit = " org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion "
Original file line number Diff line number Diff line change 44 xmlns : tools =" http://schemas.android.com/tools"
55 android : layout_width =" match_parent"
66 android : layout_height =" wrap_content"
7- android : background =" ?attr/colorSurface"
87 tools : layout_width =" 150dp" >
98
109 <androidx .appcompat.widget.AppCompatImageView
You can’t perform that action at this time.
0 commit comments