blob: 7b3243515ef16c4a57f6b3f16d36c0c2278ee3f7 [file] [log] [blame]
Yigit Boyarb96ccea2016-10-31 17:51:15 -07001apply plugin: 'com.android.library'
2
3android {
4 compileSdkVersion 24
5 buildToolsVersion "25.0.0"
6
7 defaultConfig {
8 minSdkVersion 14
9 targetSdkVersion 24
10 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 }
22}
23
24dependencies {
25 compile project(":runtime")
26 testCompile 'junit:junit:4.12'
27}