| author | Da Risk <da_risk@geekorum.com> |
| Fri, 23 Aug 2019 12:37:55 -0700 | |
| changeset 398 | 164702325c93 |
| parent 396 | c0a3c4ba2f87 |
| child 404 | b87559f67e22 |
| permissions | -rw-r--r-- |
| 181 | 1 |
/* |
| 0 | 2 |
* Geekttrss is a RSS feed reader application on the Android Platform. |
3 |
* |
|
| 181 | 4 |
* Copyright (C) 2017-2019 by Frederic-Charles Barthelery. |
| 0 | 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 |
*/ |
|
| 43 | 21 |
import java.net.URI |
| 0 | 22 |
|
23 |
plugins {
|
|
24 |
`kotlin-dsl` |
|
25 |
} |
|
26 |
||
|
42
f4d342269f9f
Update genymotion gradle plugin version
Da Risk <da_risk@geekorum.com>
parents:
40
diff
changeset
|
27 |
version = "1.0" |
|
f4d342269f9f
Update genymotion gradle plugin version
Da Risk <da_risk@geekorum.com>
parents:
40
diff
changeset
|
28 |
|
|
40
c5ae393af55c
Update gradle version to 5.1-milestone-1
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
29 |
kotlinDslPluginOptions {
|
|
c5ae393af55c
Update gradle version to 5.1-milestone-1
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
30 |
experimentalWarning.set(false) |
|
c5ae393af55c
Update gradle version to 5.1-milestone-1
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
31 |
} |
| 0 | 32 |
|
33 |
||
34 |
repositories {
|
|
35 |
gradlePluginPortal() |
|
36 |
jcenter() |
|
37 |
google() |
|
|
42
f4d342269f9f
Update genymotion gradle plugin version
Da Risk <da_risk@geekorum.com>
parents:
40
diff
changeset
|
38 |
maven {
|
|
f4d342269f9f
Update genymotion gradle plugin version
Da Risk <da_risk@geekorum.com>
parents:
40
diff
changeset
|
39 |
// Workaround for genymotion plugin not working on gradle 5.0 |
|
114
573c45437ea9
Update to AGP 3.4 and genymotion plugin 1.4.2
Da Risk <da_risk@geekorum.com>
parents:
113
diff
changeset
|
40 |
// we publish 1.4.2 version with fixes |
|
42
f4d342269f9f
Update genymotion gradle plugin version
Da Risk <da_risk@geekorum.com>
parents:
40
diff
changeset
|
41 |
url = URI("https://raw.githubusercontent.com/fbarthelery/genymotion-gradle-plugin/master/repo/")
|
|
f4d342269f9f
Update genymotion gradle plugin version
Da Risk <da_risk@geekorum.com>
parents:
40
diff
changeset
|
42 |
} |
| 0 | 43 |
} |
44 |
||
45 |
dependencies {
|
|
| 396 | 46 |
implementation("com.android.tools.build:gradle:3.5.0")
|
|
114
573c45437ea9
Update to AGP 3.4 and genymotion plugin 1.4.2
Da Risk <da_risk@geekorum.com>
parents:
113
diff
changeset
|
47 |
implementation("com.genymotion:plugin:1.4.2")
|
| 0 | 48 |
implementation("gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.14.0")
|
|
398
164702325c93
build: Update to Gradle Play Publisher 2.3.0
Da Risk <da_risk@geekorum.com>
parents:
396
diff
changeset
|
49 |
implementation("com.github.triplet.gradle:play-publisher:2.3.0")
|
| 0 | 50 |
} |