mirror of
https://github.com/LSPosed/LSPlant.git
synced 2025-05-05 04:54:43 +08:00
25 lines
474 B
Plaintext
25 lines
474 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
plugins {
|
|
id("com.android.application") version "7.1.2"
|
|
id("com.android.library") version "7.1.2"
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "LSPlant"
|
|
include(
|
|
":lsplant",
|
|
":test",
|
|
)
|