-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
69 lines (53 loc) · 1.9 KB
/
build.gradle
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
apply plugin: 'com.android.library'
ext {
bintrayRepo = 'maven'
bintrayName = 'moesif-android-okhttp2'
publishedGroupId = 'com.moesif.android'
libraryName = 'moesif-android-okhttp2'
artifact = 'moesif-android-okhttp2'
libraryDescription = 'OkHttp2 interceptor for moesif-android to caputure HTTP API Calls'
siteUrl = 'https://www.moesif.com/docs/client-integration/android/'
githubUrl = 'https://github.com/Moesif/moesif-android'
githubRepository= 'Moesif/moesif-android'
libraryVersion = '1.1.2'
developerId = 'dgilling'
developerName = 'Derric Gilling'
developerEmail = 'derric@moesif.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
minSdkVersion 10
targetSdkVersion 19
versionCode 1
versionName "1.0.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
lintOptions {
warning 'InvalidPackage'
abortOnError false
}
}
dependencies {
compile project(':moesif-android')
compile 'com.google.code.findbugs:jsr305:2.0.1'
compile 'com.squareup.okhttp:okhttp:2.7.2'
testCompile 'junit:junit:4.12'
testCompile('org.robolectric:robolectric:2.4') {
exclude module: 'commons-logging'
exclude module: 'httpclient'
}
testCompile 'org.powermock:powermock-api-mockito:1.6.1'
testCompile 'org.powermock:powermock-module-junit4:1.6.1'
testCompile 'org.powermock:powermock-module-junit4-rule:1.6.1'
testCompile 'org.powermock:powermock-classloading-xstream:1.6.1'
testCompile 'com.squareup.okhttp:mockwebserver:2.7.2'
}
sourceCompatibility = "1.7"
targetCompatibility = "1.7"
apply from: '../install.gradle'
apply from: '../bintray.gradle'