123456789101112131415161718192021222324 |
- pluginManagement {
- repositories {
- gradlePluginPortal()
- google()
- mavenCentral()
- }
- }
- dependencyResolutionManagement {
- repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
- repositories {
- google()
- mavenCentral()
- jcenter() // Warning: this repository is going to shut down soon
- maven { url 'https://jitpack.io' }
- maven { url "https://frontjs-static.pgyer.com/dist/sdk/pgyersdk" } //主力仓库
- maven { url "https://raw.githubusercontent.com/Pgyer/analytics/master" } //备用仓库(主力仓库下载不下来使用)
-
- }
- }
- rootProject.name = "EduAndroid"
- include ':app'
- include ':base'
- include ':live'
- include ':meeting'
|