- 删除 tysdk/Plugins/Android 下的 FlexionSDKHelper(已迁移至 ExtraPluginCfgs/flexion) - 更新 AndroidManifest/mainTemplate.gradle/settingsTemplate.gradle 配置 - 更新 ChannelHelpers/ConfigManager 渠道配置 - 更新 tuyoosdk AAR 和 google-services.json Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
36 lines
927 B
Groovy
36 lines
927 B
Groovy
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://android-sdk.is.com/" // Assets/MaxSdk/Mediation/IronSource/Editor/Dependencies.xml:8
|
|
}
|
|
mavenLocal()
|
|
// Android Resolver Repos End
|
|
flatDir {
|
|
dirs "${project(':unityLibrary').projectDir}/libs"
|
|
}
|
|
|
|
maven {
|
|
url "http://sdkck.tuyoo.com/artifactory/tuyoo-component/"
|
|
allowInsecureProtocol = true
|
|
}
|
|
}
|
|
}
|