forked from agrosner/DBFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (42 loc) · 1.51 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
buildscript {
ext {
kotlin_version = '1.2.71'
target_sdk = 28
min_sdk = 7
min_sdk_rx = 15
sql_cipher_min = 7
arch_min = 14
deps = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}",
sql_cipher : "net.zetetic:android-database-sqlcipher:3.5.9@aar",
rx2 : 'io.reactivex.rxjava2:rxjava:2.2.2',
coroutines : "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.26.1",
javapoet : 'com.squareup:javapoet:1.11.1',
kpoet : 'com.github.agrosner:KPoet:1.0.0',
javax_annotation : 'org.glassfish:javax.annotation:10.0-b28',
junit : 'junit:junit:4.12',
paging : "android.arch.paging:runtime:1.0.0",
support_annotations: "androidx.annotation:annotation:1.0.0",
]
}
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0-beta01'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
google()
maven { url "https://www.jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}