mirror of
https://github.com/BetterAndroid/PanguText.git
synced 2025-12-10 23:33:48 +08:00
46 lines
895 B
Plaintext
46 lines
895 B
Plaintext
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://raw.githubusercontent.com/HighCapable/maven-repository/main/repository/releases")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.highcapable.gropify") version "1.0.0"
|
|
}
|
|
|
|
gropify {
|
|
rootProject {
|
|
common {
|
|
isEnabled = false
|
|
}
|
|
}
|
|
|
|
projects(":pangutext-android") {
|
|
android {
|
|
isRestrictedAccessEnabled = true
|
|
}
|
|
}
|
|
projects(":demo-android") {
|
|
android {
|
|
isEnabled = false
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "PanguText"
|
|
|
|
include(":demo-android")
|
|
include(":pangutext-android") |