|
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 {
|
|
|
29 |
implementation("com.android.tools.build:gradle:4.1.0-alpha06")
|
|
|
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 |
}
|