Version 1.2.0 - New CustomListAdapter

This commit is contained in:
2017-12-23 14:22:46 +01:00
parent 4dfb028c8b
commit b975108b58
8 changed files with 200 additions and 81 deletions

View File

@@ -1,13 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext.kotlin_version = '1.2.0-release-Studio3.0-1'
buildscript {
repositories {
jcenter()
google()
}
dependencies {
def kotlin_version = '1.2.10'
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
ext.kotlin_version = "$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}