forked from androidannotations/androidannotations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (41 loc) · 1.31 KB
/
build.gradle
File metadata and controls
48 lines (41 loc) · 1.31 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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
// replace with the current version of the Android plugin
classpath "com.android.tools.build:gradle:4.1.1"
}
}
repositories {
google()
mavenCentral()
mavenLocal()
}
apply plugin: "com.android.application"
def AAVersion = "4.9.0-SNAPSHOT" // change this to your desired version, for example the latest stable: 4.8.0
dependencies {
annotationProcessor "org.androidannotations:androidannotations:$AAVersion"
implementation "org.androidannotations:androidannotations-api:$AAVersion"
annotationProcessor "org.androidannotations:roboguice:$AAVersion"
implementation "org.androidannotations:roboguice-api:$AAVersion"
implementation "org.roboguice:roboguice:3.0.1"
}
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 14
targetSdkVersion 29
// If you have different applicationIds for buildTypes or productFlavors uncomment this block.
//javaCompileOptions {
// annotationProcessorOptions {
// arguments = ['resourcePackageName': android.defaultConfig.applicationId]
// }
//}
}
lintOptions {
abortOnError false
// see https://github.com/roboguice/roboguice/issues/295
}
}