forked from watson-developer-cloud/java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (40 loc) · 1.36 KB
/
build.gradle
File metadata and controls
46 lines (40 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
apply plugin: 'com.android.application'
apply plugin: 'jacoco-android'
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
configurations.all {
resolutionStrategy.force 'com.android.support:support-annotations:23.0.1'
}
defaultConfig {
applicationId 'com.ibm.watson.developer_cloud.android.myapplication'
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
minSdkVersion 9
targetSdkVersion 23
versionCode 1
versionName '1.0'
//Enable multidex support
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support.test:rules:0.5'
androidTestCompile 'com.android.support.test.espresso:espresso-intents:2.2.2'
androidTestCompile ('com.android.support.test.espresso:espresso-core:2.2.2') { exclude group: 'com.android.support', module: 'support-annotations' }
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:multidex:1.0.0'
compile 'com.ibm.watson.developer_cloud:java-sdk:2.10.0'
compile project(':library')
}