-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
32 lines (30 loc) · 878 Bytes
/
settings.gradle.kts
File metadata and controls
32 lines (30 loc) · 878 Bytes
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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
mavenLocal()
}
/*resolutionStrategy {
eachPlugin {
if (requested.id.id == "cn.dorck.code.guarder") {
useModule("cn.dorck:code-guard-plugin:0.1.1-LOCAL")
// useModule("cn.dorck.android:code-guard-plugin:0.0.1-SNAPSHOT")
}
}
}*/
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
mavenLocal()
}
}
rootProject.name = "code-obfuscation"
include(":app")
include(":code-guard")
include(":librarysample")