-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
40 lines (34 loc) · 838 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
packageName = 'com.splendidbits.connect4u'
versionCode = 1
versionName = '1.0'
compileSdkVersion = 27
targetSdkVersion = 27
minSdkVersion = 23
buildToolsVersion = '27.0.0'
supportLibraryVersion = '27.1.0'
butterknifeVersion = '8.8.1'
daggerVersion = '2.14.1'
requeryVersion = '1.5.0'
}
buildscript {
ext.kotlinVersion = '1.2.30'
repositories {
google()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}