spine-runtimes/spine-android/settings.gradle.kts
Denis Andrašec ceb9ae13f4
Load Atlas/Skeleton from assets + Add basic classes (#2570)
- Add load methods to load atlas and skeleton from assets.
- Add basic classes for next steps (SpineController etc)
2024-07-03 16:32:48 +02:00

38 lines
1009 B
Plaintext

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
}
rootProject.name = "Spine Android Examples"
includeBuild("../spine-libgdx") {
dependencySubstitution {
substitute(module("com.esotericsoftware.spine:spine-libgdx")).using(project(":spine-libgdx"))
}
}
//includeBuild("../../libgdx") {
// dependencySubstitution {
// substitute(module("com.badlogicgames.gdx:gdx")).using(project(":gdx"))
// }
//}
include(":app")
include(":spine-android")