use stable repository handler instead of dependency resolution management

This commit is contained in:
IndusAryan 2023-09-16 18:04:06 +05:30
parent 88a52db4d8
commit 276022b624
2 changed files with 7 additions and 8 deletions

View File

@ -15,6 +15,13 @@ buildscript {
} }
} }
allprojects {
repositories {
google()
mavenCentral()
}
}
plugins { plugins {
id("com.google.devtools.ksp") version("1.9.0-1.0.12") apply false id("com.google.devtools.ksp") version("1.9.0-1.0.12") apply false
} }

View File

@ -1,11 +1,3 @@
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LibreTube" rootProject.name = "LibreTube"
include(":app") include(":app")