2024-06-26 11:58:04 +08: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 (unityProjectPath + "/Assets/GeneratedLocalRepo/Firebase/m2repository") // Assets/Firebase/Editor/AnalyticsDependencies.xml:18, Assets/Firebase/Editor/AppDependencies.xml:22, Assets/Firebase/Editor/AuthDependencies.xml:20, Assets/Firebase/Editor/CrashlyticsDependencies.xml:20
|
|
|
|
}
|
|
|
|
maven {
|
2024-06-26 14:33:29 +08:00
|
|
|
url "https://maven.google.com/" // Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml:7, Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml:7
|
2024-06-26 11:58:04 +08:00
|
|
|
}
|
2024-07-16 16:05:27 +08:00
|
|
|
maven {
|
2024-07-26 12:39:18 +08:00
|
|
|
url "https://repo.maven.apache.org/maven2/" // Assets/GoogleMobileAds/Mediation/MetaAudienceNetwork/Editor/MetaAudienceNetworkMediationDependencies.xml:24, Assets/GoogleMobileAds/Mediation/UnityAds/Editor/UnityMediationDependencies.xml:25, Assets/GoogleMobileAds/Mediation/UnityAds/Editor/UnityMediationDependencies.xml:33
|
2024-07-16 16:05:27 +08:00
|
|
|
}
|
|
|
|
maven {
|
2024-07-26 12:39:18 +08:00
|
|
|
url "https://dl.google.com/dl/android/maven2/" // Assets/GoogleMobileAds/Mediation/MetaAudienceNetwork/Editor/MetaAudienceNetworkMediationDependencies.xml:24, Assets/GoogleMobileAds/Mediation/UnityAds/Editor/UnityMediationDependencies.xml:25
|
2024-07-16 16:05:27 +08:00
|
|
|
}
|
2024-06-26 11:58:04 +08:00
|
|
|
mavenLocal()
|
|
|
|
// Android Resolver Repos End
|
|
|
|
flatDir {
|
|
|
|
dirs "${project(':unityLibrary').projectDir}/libs"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|