diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-10 16:11:24 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-10 16:11:24 -0700 |
commit | 75dd060f2c265a069a0794ed659d780909df92ec (patch) | |
tree | 0614dce65845e9dc89358f12795e659dc1c2971b /sample/build.gradle | |
parent | 58c69c343396ae18eb3c7e241b2c0618bd830c44 (diff) | |
download | kau-75dd060f2c265a069a0794ed659d780909df92ec.tar.gz kau-75dd060f2c265a069a0794ed659d780909df92ec.tar.bz2 kau-75dd060f2c265a069a0794ed659d780909df92ec.zip |
init
Diffstat (limited to 'sample/build.gradle')
-rw-r--r-- | sample/build.gradle | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sample/build.gradle b/sample/build.gradle new file mode 100644 index 0000000..9a349e6 --- /dev/null +++ b/sample/build.gradle @@ -0,0 +1,38 @@ +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' + +android { + compileSdkVersion Integer.parseInt(project.TARGET_SDK) + buildToolsVersion project.BUILD_TOOLS + + defaultConfig { + applicationId "${project.APP_GROUP}." + project.APP_ID.toLowerCase() + ".sample" + minSdkVersion Integer.parseInt(project.MIN_SDK) + targetSdkVersion Integer.parseInt(project.TARGET_SDK) + versionCode Integer.parseInt(project.VERSION_CODE) + versionName project.VERSION_NAME + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + test.java.srcDirs += 'src/test/kotlin' + } +} + +dependencies { + compile fileTree(dir: 'libs', include: ['*.jar']) + compile project(':library') + androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { + exclude group: 'com.android.support', module: 'support-annotations' + }) + testCompile 'junit:junit:4.12' + compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" + testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" +} |