This repository has been archived by the owner on Sep 22, 2021. It is now read-only.
forked from RedApparat/Fotoapparat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (53 loc) · 1.45 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
subprojects {
ext {
artifactVersion = '2.7.0'
}
}
buildscript {
ext {
versions = [
gradle : '6.5.1',
kotlin : '1.4.20',
code : 1,
name : '1.0.0',
sdk : [
minimum: 14,
target : 29
],
android: [
buildTools: '29.0.2',
appcompat : '1.0.1',
annotation : '1.0.0',
exifinterface : '1.0.0'
],
rx : [
rxJava1: '1.3.8',
rxJava2: '2.2.3'
],
test : [
junit : '4.12',
mockito: '2.23.0'
]
]
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}