| apply plugin: 'android' | |
| apply plugin: 'kotlin-android' | |
| repositories { | |
| mavenCentral() | |
| } | |
| android { | |
| compileSdkVersion 17 | |
| buildToolsVersion "17.0.0" | |
| defaultConfig { | |
| minSdkVersion 7 | |
| targetSdkVersion 16 | |
| } | |
| } | |
| dependencies { | |
| compile 'com.android.support:support-v4:13.0.0' | |
| compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" | |
| } | |
| buildscript { | |
| ext.kotlin_version = '$VERSION$' | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | |
| } | |
| } |