Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Issue #12: Use kotlin version constant in all build files.
Browse files Browse the repository at this point in the history
  • Loading branch information
pocmo committed Mar 21, 2018
1 parent 54a390d commit 78159b6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/browser/errorpages/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ android {
dependencies {
provided 'com.android.support:support-annotations:27.1.0'

provided "org.jetbrains.kotlin:kotlin-stdlib:1.2.30"
provided "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}

apply from: '../../../publish.gradle'
Expand Down
4 changes: 2 additions & 2 deletions components/support/ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ android {
}

dependencies {
provided "org.jetbrains.kotlin:kotlin-stdlib:1.2.30"
provided "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

provided "com.android.support:support-compat:27.1.0"

testCompile "org.jetbrains.kotlin:kotlin-stdlib:1.2.30"
testCompile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile 'junit:junit:4.12'
testCompile "org.robolectric:robolectric:3.7.1"
testCompile 'org.mockito:mockito-core:2.12.0'
Expand Down
2 changes: 1 addition & 1 deletion components/support/utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
}

dependencies {
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:1.2.30"
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compileOnly "com.android.support:support-annotations:27.1.0"
compileOnly "com.android.support:support-compat:27.1.0"

Expand Down

0 comments on commit 78159b6

Please sign in to comment.