Created
March 18, 2015 14:42
-
-
Save Fi5t/4c5064287787a3d19986 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'com.android.application' | |
| apply plugin: 'kotlin-android' | |
| android { | |
| compileSdkVersion 21 | |
| buildToolsVersion "21.1.2" | |
| defaultConfig { | |
| applicationId "ru.freedomlogic.hellowatch" | |
| minSdkVersion 15 | |
| targetSdkVersion 21 | |
| versionCode 1 | |
| versionName "1.0" | |
| } | |
| buildTypes { | |
| release { | |
| minifyEnabled false | |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
| } | |
| } | |
| sourceSets { | |
| main.java.srcDirs += 'src/main/kotlin' | |
| } | |
| } | |
| dependencies { | |
| compile fileTree(dir: 'libs', include: ['*.jar']) | |
| wearApp project(':wear') | |
| compile 'com.android.support:appcompat-v7:22.0.0' | |
| compile 'com.google.android.gms:play-services:6.5.87' | |
| compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | |
| } | |
| buildscript { | |
| ext.kotlin_version = '0.10.770' | |
| repositories { | |
| mavenCentral() | |
| maven { | |
| url 'http://oss.sonatype.org/content/repositories/snapshots' | |
| } | |
| } | |
| dependencies { | |
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | |
| classpath 'org.jetbrains.kotlin:kotlin-android-compiler-plugin:0.1-SNAPSHOT' | |
| } | |
| } | |
| repositories { | |
| mavenCentral() | |
| maven { | |
| url 'http://oss.sonatype.org/content/repositories/snapshots' | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment