-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
66 lines (60 loc) · 2.06 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
59
60
61
62
63
64
65
66
/*
* Copyright (C) 2018 Raul Hernandez Lopez
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
buildscript {
ext.kotlin_version = '1.2.50'
ext.arrow_version = '0.7.2'
ext.support_library = '27.0.2'
ext.coroutines_version = '0.16'
ext.build_tools_version = '27.0.3'
ext.constraint_version = '1.1.2'
ext.retrofit_version = '2.3.0'
ext.retrofit_coroutines_version = '1.0.0'
ext.picasso_version = '2.5.2'
ext.timber_version = '4.6.0'
ext.gson_version = '2.8.2'
ext.test_runner_version = '1.0.2'
ext.test_junit_version = '4.12'
ext.appId = "com.raulh82vlc.functionalkotlinarrow"
ext.minSdk = 21
ext.compileVersion = 27
ext.targetSdk = 27
ext.version_code = 1
ext.version_name = "1.0"
ext.testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
repositories {
maven { url "http://dl.bintray.com/kategory/maven" }
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0-alpha18'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "http://dl.bintray.com/kategory/maven" }
maven { url 'https://maven.google.com' }
maven { url 'https://kotlin.bintray.com/kotlinx' }
maven { url "http://dl.bintray.com/kotlin/kotlin-dev" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}