blob: 0fc1e00bba92c84249d5bcb6080a0f547de28e7f [file] [log] [blame]
Yigit Boyarb96ccea2016-10-31 17:51:15 -07001apply plugin: 'com.android.library'
2
3android {
Yigit Boyar1db90082016-11-11 17:00:31 -08004 compileSdkVersion compile_sdk_version
5 buildToolsVersion build_tools_version
Yigit Boyarb96ccea2016-10-31 17:51:15 -07006
7 defaultConfig {
Yigit Boyar1db90082016-11-11 17:00:31 -08008 minSdkVersion min_sdk_version
9 targetSdkVersion target_sdk_version
Yigit Boyarb96ccea2016-10-31 17:51:15 -070010 versionCode 1
11 versionName "1.0"
12
13 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
14
15 }
16 buildTypes {
17 release {
18 minifyEnabled false
19 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
20 }
21 }
Yigit Boyarb96ccea2016-10-31 17:51:15 -070022
Yigit Boyarc1b53ee2016-11-09 15:33:52 -080023 testOptions {
24 unitTests.returnDefaultValues = true
25 }
26}
Yigit Boyarb96ccea2016-10-31 17:51:15 -070027dependencies {
28 compile project(":runtime")
Yigit Boyar1db90082016-11-11 17:00:31 -080029 testCompile "junit:junit:$junit_version"
30 testCompile "org.mockito:mockito-core:$mockito_version"
Yigit Boyar19b41102016-11-20 10:46:32 -080031}
32
33createAndroidCheckstyle(project)