-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
84 lines (65 loc) · 1.75 KB
/
build.gradle
File metadata and controls
84 lines (65 loc) · 1.75 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
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
82
83
84
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.10.+'
}
}
apply plugin: 'android'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
//compile project(':paycard-parser')
// compile 'com.google.guava:guava:17.0@jar'
// compile group: 'com.googlecode', name: 'javaemvreader', version: '0.6.0-SNAPSHOT', classifier: 'minimal-noswing-withdeps'
//testCompile 'junit:junit:4.11@jar'
//testCompile 'org.hamcrest:hamcrest-all:1.3@jar'
}
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
sourceSets {
main {
// otherwise aidl task does not see aidl files in the project
aidl.srcDirs = ['src/main/aidl']
}
// instrumentTest.setRoot('src/tests')
}
defaultConfig {
// packageName "com.nonosoft.nfccreditcardtool"
// versionCode 1
// versionName "0.0.1"
// minSdkVersion 10
// targetSdkVersion 19
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
signingConfigs {
release {
storeFile file(ttboxSignKeystore)
storePassword ttboxSignStorepass
keyAlias "android"
keyPassword ttboxSignKeypass
}
}
buildTypes {
debug {
//signingConfig signingConfigs.debug
debuggable true
}
release {
//http://tools.android.com/tech-docs/new-build-system/user-guide
debuggable false
runProguard true
zipAlign true
proguardFile('proguard.txt')
signingConfig signingConfigs.release
}
}
}