-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
67 lines (56 loc) · 1.59 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
apply plugin: 'com.android.application'
apply plugin: 'maven'
version="0.8"
group="org.irmacard"
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.1'
}
}
repositories {
mavenLocal()
maven {
url "https://credentials.github.io/repos/maven2/"
}
// Use this to get minimal android library
maven {
url "https://raw.github.com/embarkmobile/zxing-android-minimal/mvn-repo/maven-repository/"
}
mavenCentral()
}
android {
compileSdkVersion 19
buildToolsVersion "19.1"
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
}
lintOptions {
// BCProv references javax.naming
// CredentialsAPI references java.awt and java.swing
disable 'InvalidPackage'
}
}
dependencies {
compile 'com.loopj.android:android-async-http:1.4.3'
compile 'com.android.support:support-v4:19.1.0'
compile 'com.google.code.gson:gson:2.2.2'
// zxing QR code libraries
compile 'com.embarkmobile:zxing-android-minimal:2.0.0@aar'
compile 'com.embarkmobile:zxing-android-integration:2.0.0@aar'
compile 'com.google.zxing:core:3.0.1'
compile "org.irmacard.android:irma_android_library:0.9.1"
compile 'net.sf.scuba:scuba_sc_android:0.0.7-irma'
compile 'net.sf.scuba:scuba_smartcards:0.0.7-irma'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.2'
}