| author | Da Risk <da_risk@geekorum.com> |
| Sat, 09 May 2020 00:12:24 -0400 | |
| changeset 4 | 9ac7ea6ba16c |
| parent 1 | 831cffa9c991 |
| child 6 | 99ad8c14fec2 |
| permissions | -rw-r--r-- |
| 1 | 1 |
import java.net.URI |
2 |
||
3 |
plugins {
|
|
4 |
`kotlin-dsl` |
|
5 |
} |
|
6 |
||
7 |
||
8 |
version = "1.0" |
|
9 |
||
10 |
kotlinDslPluginOptions {
|
|
11 |
experimentalWarning.set(false) |
|
12 |
} |
|
13 |
||
14 |
repositories {
|
|
15 |
gradlePluginPortal() |
|
16 |
jcenter() |
|
17 |
google() |
|
18 |
maven {
|
|
19 |
// Workaround for genymotion plugin not working on gradle 5.0 |
|
20 |
// we publish 1.4.2 version with fixes |
|
21 |
url = uri("https://raw.githubusercontent.com/fbarthelery/genymotion-gradle-plugin/master/repo/")
|
|
22 |
} |
|
23 |
maven {
|
|
24 |
url = uri("https://kotlin.bintray.com/kotlinx")
|
|
25 |
} |
|
26 |
} |
|
27 |
||
28 |
dependencies {
|
|
|
4
9ac7ea6ba16c
build: use a stable AGP gradle plugin
Da Risk <da_risk@geekorum.com>
parents:
1
diff
changeset
|
29 |
implementation("com.android.tools.build:gradle:3.6.3")
|
| 1 | 30 |
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.71")
|
31 |
implementation("com.genymotion:plugin:1.4.2")
|
|
32 |
implementation("gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.15.0")
|
|
33 |
implementation("com.github.triplet.gradle:play-publisher:2.7.2")
|
|
34 |
||
35 |
implementation("com.geekorum.gradle.avdl:plugin:0.0.2")
|
|
36 |
implementation("com.geekorum.gradle.avdl:flydroid:0.0.2")
|
|
37 |
} |