mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-22 12:48:15 +03:00
20 lines
537 B
Text
20 lines
537 B
Text
pluginManagement {
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == "com.android.library") {
|
|
useModule("com.android.tools.build:gradle:${requested.version}")
|
|
}
|
|
if (requested.id.id == "com.android.application") {
|
|
useModule("com.android.tools.build:gradle:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Aniyomi"
|
|
include(":app")
|