Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency com.android.tools.build:gradle to v7.1.0 #93

Merged
merged 4 commits into from
Jan 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ dependencies {
implementation(deps.timber)

testImplementation(deps.test.junit)
androidTestImplementation(deps.test.androidxJunit)
androidTestImplementation(deps.test.androidXSspresso)
androidTestImplementation(deps.test.androidx.junit)
androidTestImplementation(deps.test.androidx.core)
androidTestImplementation(deps.test.androidx.espresso.core)

addUnitTest()
testImplementation(testUtils)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
}
dependencies {
classpath("com.android.tools.build:gradle:7.0.4")
classpath("com.android.tools.build:gradle:7.1.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.2.0")
classpath("dev.ahmedmourad.nocopy:nocopy-gradle-plugin:1.4.0")
Expand Down
15 changes: 11 additions & 4 deletions buildSrc/src/main/kotlin/deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object appConfig {

object deps {
object androidx {
const val appCompat = "androidx.appcompat:appcompat:1.4.0"
const val appCompat = "androidx.appcompat:appcompat:1.4.1"
const val coreKtx = "androidx.core:core-ktx:1.7.0"
const val constraintLayout = "androidx.constraintlayout:constraintlayout:2.1.1"
const val recyclerView = "androidx.recyclerview:recyclerview:1.2.1"
Expand Down Expand Up @@ -60,7 +60,7 @@ object deps {
}

object koin {
private const val version = "3.1.4"
private const val version = "3.1.5"

const val core = "io.insert-koin:koin-core:$version"
const val android = "io.insert-koin:koin-android:$version"
Expand All @@ -79,8 +79,15 @@ object deps {

object test {
const val junit = "junit:junit:4.13.2"
const val androidxJunit = "androidx.test.ext:junit:1.1.2"
const val androidXSspresso = "androidx.test.espresso:espresso-core:3.3.0"

object androidx {
const val core = "androidx.test:core-ktx:1.4.0"
const val junit = "androidx.test.ext:junit-ktx:1.1.3"

object espresso {
const val core = "androidx.test.espresso:espresso-core:3.4.0"
}
}

const val mockk = "io.mockk:mockk:1.12.1"
const val kotlinJUnit = "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorSurface"
tools:layout_width="150dp">

<androidx.appcompat.widget.AppCompatImageView
Expand Down