-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (42 loc) · 1.14 KB
/
build.gradle
File metadata and controls
51 lines (42 loc) · 1.14 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.7'
}
}
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
android {
buildToolsVersion '23.0.1'
compileSdkVersion 23
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
}
}
repositories {
mavenCentral()
maven {
url 'http://releases.marmeladburk.fidesmo.com'
}
}
def AAVersion = '3.3.2'
dependencies {
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
compile group: 'com.fidesmo', name: 'nordpol-android', version: '0.1.7', ext: 'aar', transitive: true
compile fileTree(dir: 'libs', include: '*.jar')
compile "com.android.support:appcompat-v7:23.0.1"
}
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
resourcePackageName 'com.fidesmo.tutorials.hellofidesmo'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}