forked from openid/OpenYOLO-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (44 loc) · 1.84 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
apply plugin: 'com.android.application'
apply plugin: 'checkstyle'
apply from:'../config/android-common.gradle'
android {
defaultConfig {
applicationId "org.openyolo.testapp"
project.archivesBaseName = "openyolo-testapp"
vectorDrawables.useSupportLibrary = true
}
signingConfigs {
debugAndRelease {
storeFile file("${projectDir}/testapp.keystore")
storePassword "testapp"
keyAlias "testapp"
keyPassword "testapp"
}
}
buildTypes {
debug {
signingConfig signingConfigs.debugAndRelease
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
signingConfig signingConfigs.debugAndRelease
}
}
}
dependencies {
implementation project(':api')
implementation project(':protocol')
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
implementation "com.android.support:support-vector-drawable:${rootProject.ext.supportLibVersion}"
implementation "com.android.support:design:${rootProject.ext.supportLibVersion}"
implementation "com.android.support:support-vector-drawable:${rootProject.ext.supportLibVersion}"
implementation "com.github.bumptech.glide:glide:${rootProject.ext.glideVersion}"
implementation "com.google.guava:guava:${rootProject.ext.guavaVersion}"
implementation 'com.jakewharton:butterknife:8.5.1'
implementation "org.hamcrest:hamcrest-core:${rootProject.ext.hamcrestVersion}"
implementation "org.valid4j:valid4j:${rootProject.ext.valid4jVersion}"
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
annotationProcessor "com.github.bumptech.glide:compiler:${rootProject.glideVersion}"
}
apply from:'../config/style.gradle'