-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
56 lines (46 loc) · 1.13 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
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/"
}
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.android.support:support-v4:19.1.0'
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'
}