Updated some more stuff
This commit is contained in:
parent
e46b824638
commit
eb32d38002
2 changed files with 5 additions and 3 deletions
|
@ -1,14 +1,15 @@
|
||||||
|
import com.anthonycicchetti.financetracker.DependencyVersions
|
||||||
|
|
||||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.2.60'
|
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.1.3'
|
classpath "com.android.tools.build:gradle:${DependencyVersions.Android.Gradle}"
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
|
|
@ -12,5 +12,6 @@ object DependencyVersions {
|
||||||
|
|
||||||
object Android {
|
object Android {
|
||||||
const val SupportLibrary = "27.1.1"
|
const val SupportLibrary = "27.1.1"
|
||||||
|
const val Gradle = "3.1.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue