IdleWall/settings.gradle.kts
2025-12-29 10:52:12 +08:00

32 lines
916 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
flatDir {
dirs("libs")
}
maven("https://jitpack.io")
// TradPlus
mavenCentral()
// Ironsource
maven("https://android-sdk.is.com/")
// Pangle
maven("https://artifact.bytedance.com/repository/pangle")
// Mintegral
//Launch GP market application Android X Version
//If you fail to pull the code using gradle, add the maven warehouse configuration to the project root build.gradle file
maven("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea")
}
}
rootProject.name = "IdleWall"
include(":app")