| author | Da Risk <da_risk@geekorum.com> |
| Wed, 30 Jan 2019 17:42:47 -0800 | |
| changeset 60 | f6cd6af5e047 |
| parent 52 | e5c5c909ba21 |
| child 101 | 247d5b1c0324 |
| permissions | -rw-r--r-- |
| 0 | 1 |
/** |
2 |
* Geekttrss is a RSS feed reader application on the Android Platform. |
|
3 |
* |
|
4 |
* Copyright (C) 2017-2018 by Frederic-Charles Barthelery. |
|
5 |
* |
|
6 |
* This file is part of Geekttrss. |
|
7 |
* |
|
8 |
* Geekttrss is free software: you can redistribute it and/or modify |
|
9 |
* it under the terms of the GNU General Public License as published by |
|
10 |
* the Free Software Foundation, either version 3 of the License, or |
|
11 |
* (at your option) any later version. |
|
12 |
* |
|
13 |
* Geekttrss is distributed in the hope that it will be useful, |
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
16 |
* GNU General Public License for more details. |
|
17 |
* |
|
18 |
* You should have received a copy of the GNU General Public License |
|
19 |
* along with Geekttrss. If not, see <http://www.gnu.org/licenses/>. |
|
20 |
*/ |
|
21 |
import java.net.URI |
|
22 |
||
23 |
plugins {
|
|
24 |
id("com.google.android.gms.oss-licenses-plugin") version "0.9.3.1" apply false
|
|
25 |
id("com.google.gms.google-services") version "3.2.0" apply false
|
|
26 |
id("io.fabric") version "1.25.4" apply false
|
|
|
52
e5c5c909ba21
Kotlin: update to 1.3.20 and coroutines 1.1.0
Da Risk <da_risk@geekorum.com>
parents:
51
diff
changeset
|
27 |
kotlin("android") version "1.3.20" apply false
|
|
e5c5c909ba21
Kotlin: update to 1.3.20 and coroutines 1.1.0
Da Risk <da_risk@geekorum.com>
parents:
51
diff
changeset
|
28 |
kotlin("kapt") version "1.3.20" apply false
|
|
e5c5c909ba21
Kotlin: update to 1.3.20 and coroutines 1.1.0
Da Risk <da_risk@geekorum.com>
parents:
51
diff
changeset
|
29 |
id("kotlinx-serialization") version "1.3.20" apply false
|
| 0 | 30 |
} |
31 |
||
32 |
||
33 |
// some extra properties |
|
34 |
extra["compileSdkVersion"] = "android-28" |
|
| 51 | 35 |
extra["daggerVersion"] = "2.21" |
|
50
a4bb7d5230d8
Update to androidx lifecyle-2.1.0-alpha01 and cleanup
Da Risk <da_risk@geekorum.com>
parents:
41
diff
changeset
|
36 |
extra["lifecycleVersion"] = "2.1.0-alpha01" |
| 60 | 37 |
extra["roomVersion"] = "2.1.0-alpha04" |
|
52
e5c5c909ba21
Kotlin: update to 1.3.20 and coroutines 1.1.0
Da Risk <da_risk@geekorum.com>
parents:
51
diff
changeset
|
38 |
extra["kotlinVersion"] = "1.3.20" |
|
e5c5c909ba21
Kotlin: update to 1.3.20 and coroutines 1.1.0
Da Risk <da_risk@geekorum.com>
parents:
51
diff
changeset
|
39 |
extra["corountinesVersion"] = "1.1.0" |
| 0 | 40 |
|
41 |
||
42 |
allprojects {
|
|
43 |
repositories {
|
|
44 |
google() |
|
45 |
jcenter() |
|
46 |
// for kotlinx |
|
47 |
maven { url = URI("https://kotlin.bintray.com/kotlinx") }
|
|
48 |
} |
|
49 |
} |
|
50 |
||
51 |
tasks.register("clean", Delete::class.java) {
|
|
52 |
delete(buildDir) |
|
53 |
} |