1234567891011121314151617181920212223242526 |
- 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" } //备用仓库(主力仓库下载不下来使用)
- // 三方分享
- maven { url "https://dl.bintray.com/thelasterstar/maven" }
- //banner
- maven { url "https://s01.oss.sonatype.org/content/groups/public" }
- }
- }
- rootProject.name = "EduNative"
- include ':app'
- include ':base'
|