blob: 47f8aecf57d48368f901c270d5e16d58e5c39ab3 (
about) (
plain)
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
|
apply(from = "buildDependencies.gradle")
val build: Map<Any, Any> by extra
plugins {
`kotlin-dsl`
}
repositories {
google()
gradlePluginPortal()
jcenter()
}
kotlinDslPluginOptions {
experimentalWarning.set(false)
}
gradlePlugin {
plugins {
register("aps") {
id = "aps-plugin"
implementationClass = "PasswordStorePlugin"
}
}
}
dependencies {
implementation(build.getValue("kotlinGradlePlugin"))
implementation(build.getValue("androidGradlePlugin"))
implementation(build.getValue("binaryCompatibilityValidator"))
}
|