forked from openid/OpenYOLO-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (30 loc) · 1.33 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
apply plugin: 'com.android.library'
apply from:'../config/android-common.gradle'
apply from:'../config/protobuf.gradle'
project.ext {
moduleDesc = 'OpenYOLO for Android Client API'
}
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
consumerProguardFiles 'proguard-rules.txt'
project.archivesBaseName = 'openyolo-api'
buildConfigField('String', 'clientVersionMajor', rootProject.ext.versionMajor)
buildConfigField('String', 'clientVersionMinor', rootProject.ext.versionMinor)
buildConfigField('String', 'clientVersionPatch', rootProject.ext.versionPatch)
}
}
dependencies {
api project(":bbq")
api project(":protocol")
implementation "com.android.support:support-annotations:${rootProject.ext.supportLibVersion}"
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
implementation "org.hamcrest:hamcrest-core:${rootProject.ext.hamcrestVersion}"
implementation "org.valid4j:valid4j:${rootProject.ext.valid4jVersion}"
apply from:'../config/testdeps.gradle', to:it
testImplementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
}
apply from: '../config/style.gradle'
apply from: '../config/coverage.gradle'
apply from: '../config/javadoc.gradle'
apply from: '../config/bintray.gradle'