nmdanny
07/13/2017, 5:28 PMroberto.guerra
07/13/2017, 5:29 PMcompile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
agomez
07/13/2017, 5:29 PMorg.jetbrains.kotlin:kotlin-reflect
nmdanny
07/13/2017, 5:29 PMroberto.guerra
07/13/2017, 5:30 PMroberto.guerra
07/13/2017, 5:30 PMnmdanny
07/13/2017, 5:30 PMroberto.guerra
07/13/2017, 5:30 PMnmdanny
07/13/2017, 5:30 PMroberto.guerra
07/13/2017, 5:31 PMdamian
07/13/2017, 5:31 PMkotlin-reflect
. There's quite a bit of functionality in there that not everyone needs. (Aside from some simple reflection stuff which is in the stdlib)roberto.guerra
07/13/2017, 5:31 PMroberto.guerra
07/13/2017, 5:31 PMroberto.guerra
07/13/2017, 5:31 PMkotlin-reflect
nmdanny
07/13/2017, 5:32 PMcompanionObjectInstance
still isn't in scoperoberto.guerra
07/13/2017, 5:32 PMnmdanny
07/13/2017, 5:36 PMroberto.guerra
07/13/2017, 5:37 PMnmdanny
07/13/2017, 5:38 PM// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.1.3'
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
nmdanny
07/13/2017, 5:40 PMdistributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
, is that ok?roberto.guerra
07/13/2017, 5:42 PMagomez
07/13/2017, 5:42 PMnmdanny
07/13/2017, 5:43 PMnmdanny
07/13/2017, 5:45 PMcompile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
then I shouldn't need compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
right?agomez
07/13/2017, 5:46 PMnmdanny
07/13/2017, 5:53 PMnmdanny
07/13/2017, 5:55 PMredrield
07/13/2017, 11:10 PMredrield
07/13/2017, 11:10 PMkarelpeeters
07/13/2017, 11:11 PM