forked from objectbox/objectbox-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (44 loc) · 927 Bytes
/
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
ext {
_compileSdkVersion = 29 /* Android 10 (Q) */
_targetSdkVersion = 28 /* Android 9 (P) */
objectboxVersion = '2.4.0'
}
buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
}
repositories {
google()
jcenter()
}
}
allprojects {
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
}
repositories {
jcenter()
mavenCentral()
google()
}
}
task zipAll(type: Zip) {
archiveBaseName = "objectbox-examples"
from(rootDir) {
exclude '**/.idea/**'
exclude '**/build/**'
exclude '.gradle/**'
exclude '**/*.iml'
exclude '**/*.dll'
exclude '**/*.so'
exclude '**/local.properties'
}
destinationDirectory = buildDir
}
wrapper {
distributionType Wrapper.DistributionType.ALL
}