-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (42 loc) · 1.37 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
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.+'
}
}
repositories {
mavenCentral()
mavenLocal()
}
def AAVersion = '3.0.1'
dependencies {
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
compile "com.android.support:support-v13:18.0.+"
compile fileTree( dir: 'libs', include:'*.jar' )
}
apt {
arguments {
androidManifestFile variant.processResources.manifestFile
resourcePackageName 'org.androidsoft.opendata.remarkabletrees'
// If you're using Android NBS flavors you should use the following line instead of hard-coded packageName
// resourcePackageName android.defaultConfig.packageName
// You can set optional annotation processing options here, like these commented options:
// logLevel 'INFO'
// logFile '/var/log/aa.log'
}
}
android {
compileSdkVersion "Google Inc.:Google APIs:19"
buildToolsVersion "19.1.0"
lintOptions {
enable 'UnusedIds', 'EasterEgg' //, 'NewerVersionAvailable'
disable 'MissingRegistered'
}
apply from: 'sign.gradle'
}