Updated some more stuff

This commit is contained in:
acicchetti 2018-08-04 13:17:43 -04:00
parent e46b824638
commit eb32d38002
2 changed files with 5 additions and 3 deletions

View file

@ -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.
buildscript {
ext.kotlin_version = '1.2.60'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.android.tools.build:gradle:${DependencyVersions.Android.Gradle}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files

View file

@ -12,5 +12,6 @@ object DependencyVersions {
object Android {
const val SupportLibrary = "27.1.1"
const val Gradle = "3.1.3"
}
}