forked from RikkaApps/HiddenApiRefinePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
33 lines (29 loc) · 857 Bytes
/
settings.gradle.kts
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
32
33
@file:Suppress("UnstableApiUsage")
include(":gradle-plugin")
include(":annotation-processor")
include(":annotation")
include(":runtime")
pluginManagement {
repositories {
mavenCentral()
google()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
versionCatalogs {
create("libs") {
val agp = "8.1.2"
val service = "1.1.1"
val asm = "9.6"
library("android-gradle", "com.android.tools.build:gradle:$agp")
library("google-service-compiler", "com.google.auto.service:auto-service:$service")
library("google-service-annotation", "com.google.auto.service:auto-service-annotations:$service")
library("asm-all", "org.ow2.asm:asm-commons:$asm")
}
}
}