2025-09-15 21:10:41 +00:00
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
**ARTIFACTORYREPOSITORY**
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
include ':launcher', ':unityLibrary'
|
|
|
|
|
**INCLUDES**
|
|
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
|
|
|
|
|
repositories {
|
|
|
|
|
**ARTIFACTORYREPOSITORY**
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
// Android Resolver Repos Start
|
|
|
|
|
def unityProjectPath = $/file:///**DIR_UNITYPROJECT**/$.replace("\\", "/")
|
|
|
|
|
maven {
|
|
|
|
|
url "https://repo.onestore.net/repository/onestore-sdk-public" // Assets/OneStoreCorpPlugins/AppLicenseChecker/Editor/AppLicenseCheckerDependencies.xml:5, Assets/OneStoreCorpPlugins/Purchase/Editor/PurchaseDependencies.xml:5
|
|
|
|
|
}
|
|
|
|
|
maven {
|
2025-11-07 00:01:16 +00:00
|
|
|
url "https://maven.google.com/" // Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml:7, Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml:12, Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml:7, Packages/com.unity.ads/Editor/Source/Dependencies.xml:7
|
2025-09-15 21:10:41 +00:00
|
|
|
}
|
|
|
|
|
maven {
|
|
|
|
|
url "https://repo.maven.apache.org/maven2/" // Assets/GoogleMobileAds/Mediation/UnityAds/Editor/UnityMediationDependencies.xml:25, Assets/GoogleMobileAds/Mediation/UnityAds/Editor/UnityMediationDependencies.xml:33
|
|
|
|
|
}
|
|
|
|
|
maven {
|
|
|
|
|
url "https://dl.google.com/dl/android/maven2/" // Assets/GoogleMobileAds/Mediation/UnityAds/Editor/UnityMediationDependencies.xml:25
|
|
|
|
|
}
|
|
|
|
|
mavenLocal()
|
|
|
|
|
// Android Resolver Repos End
|
|
|
|
|
flatDir {
|
|
|
|
|
dirs "${project(':unityLibrary').projectDir}/libs"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|