Skip to content

Commit 68ddda0

Browse files
authored
Merge pull request #93 from Kotlin-Android-Open-Source/renovate/all-deps
chore(deps): update dependency com.android.tools.build:gradle to v7.1.0
2 parents 2cfd5f7 + 9cce7b9 commit 68ddda0

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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")

buildSrc/src/main/kotlin/deps.kt

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ object appConfig {
2727

2828
object 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"

feature-search/src/main/res/layout/item_recycler_search_user.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
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

0 commit comments

Comments
 (0)