1234567891011121314151617181920212223242526 |
- pluginManagement {
- repositories {
- gradlePluginPortal()
- google()
- mavenCentral()
- if ("true" == useMavenLocal) {
- mavenLocal()
- }
- maven { url 'https://jitpack.io' }
- maven { url 'https://raw.githubusercontent.com/martinloren/AabResGuard/mvn-repo' }
- }
- }
- dependencyResolutionManagement {
- repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
- repositories {
- google()
- mavenCentral()
- maven { url 'https://raw.githubusercontent.com/martinloren/AabResGuard/mvn-repo' }
- jcenter() //AndResGuard在jcenter上
- }
- }
- rootProject.name = "XmlClassGuard"
- include ':app'
- include ':plugin'
- include ':base'
- include ':kts_test'
|