Skip to content

Commit

Permalink
Add improvements in gradle file
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanarodr committed Jul 3, 2021
1 parent 7c82148 commit bc84ac3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ android {
applicationId "br.com.jonathanarodr.playmovie"

versionCode 2
versionName "2.0"
versionName "1.0.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments clearPackageData: 'true'
Expand Down Expand Up @@ -67,7 +67,7 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:$coroutines_version")

implementation("androidx.core:core-ktx:$core_ktx")
implementation("androidx.core:core-ktx:$android_core_version")

implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version")
implementation("androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version")
Expand Down Expand Up @@ -109,7 +109,7 @@ dependencies {
androidTestUtil("androidx.test:orchestrator:$android_test_version")
androidTestImplementation("androidx.test:runner:$android_test_version")
androidTestImplementation("androidx.test:rules:$android_test_version")
androidTestImplementation("androidx.test.espresso:espresso-core:$espresson_version") {
androidTestImplementation("androidx.test.espresso:espresso-core:$espresso_version") {
exclude group: "com.android.support", module: "support-annotations"
}
androidTestImplementation("io.mockk:mockk-android:$mockk_version")
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
kotlin_version = '1.5.20'
gradle_version = '4.2.2'
coroutines_version = '1.4.1'
core_ktx = '1.6.0'
android_core_version = '1.6.0'
lifecycle_version = '2.3.1'
room_version = '2.3.0'
navigation_version = '2.3.5'
Expand All @@ -21,7 +21,7 @@ buildscript {
okhttp_version = '4.9.0'
junit_version = '4.13.2'
android_test_version = '1.4.0'
espresson_version = '3.4.0'
espresso_version = '3.4.0'
mockk_version = '1.12.0'
}

Expand Down

0 comments on commit bc84ac3

Please sign in to comment.