forked from openwalletGH/openwallet-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
81 lines (70 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "com.openwallet.wallet.dev"
minSdkVersion 10
targetSdkVersion 23
versionCode 56
versionName "v1.6.3"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
androidTest {
setRoot('src/test')
}
}
}
repositories {
flatDir {
dirs 'aars'
}
}
//sourceSets {
// unitTest {
// java.srcDir file('src/test/java')
// resources.srcDir file('src/test/resources')
// }
//}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile fileTree(dir: '../core/libs', include: ['*.jar'])
// Testing
// androidTestCompile 'junit:junit:4.11'
// androidTestCompile 'org.robolectric:robolectric:2.3'
// androidTestCompile 'com.squareup:fest-android:1.0.+'
compile project(':core')
compile 'com.android.support:gridlayout-v7:23.3.0'
compile 'com.android.support:support-v4:23.3.0'
compile 'com.android.support:appcompat-v7:23.3.0'
// compile 'com.android.support:preference-v7:23.2.1'
compile 'com.google.guava:guava:16.0.1'
compile 'com.google.code.findbugs:jsr305:2.0.1'
compile 'com.madgag.spongycastle:core:1.51.0.0'
compile 'com.google.protobuf:protobuf-java:2.5.0'
compile 'com.google.zxing:core:3.1.0'
compile 'ch.acra:acra:4.8.5'
compile 'com.android.support:support-v4-preferencefragment:1.0.0@aar'
compile 'com.jakewharton:butterknife:7.0.1'
}
//apply plugin: 'robolectric'
//robolectric {
// include '**/*Test.class'
// exclude '**/espresso/**/*.class'
//}
//apply plugin: 'idea'
//idea {
// module {
// testOutputDir = file('build/test-classes/debug')
// }
//}