pluginManagement { repositories { google { maven { url 'https://maven.aliyun.com/repository/gradle-plugin' } mavenCentral() google() } mavenCentral() gradlePluginPortal() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { maven { url 'https://maven.aliyun.com/repository/public' } maven { url 'https://maven.aliyun.com/repository/google' } maven { url 'https://maven.aliyun.com/repository/jcenter' } google() mavenCentral() } } rootProject.name = "Calculation" include ':app'