- Add google-services.json per-channel copy in SwitchChannel (Flexion has extra client) - Add GooglePlay default google-services.json for fallback - Switch Bundle Identifier per channel (Flexion → com.arkgame.ft.flexion) - Fix FlexionSDKHelper missing BillingService import - Fix Flexion AndroidManifest: add fullBackupContent override with flexion_backup_rules - Add MainProcessName tools:replace to resolve gasdk/tuyoosdk manifest conflict - Add billing:6.0.1 dependency for tuyoosdk AAR init compatibility 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
|
|
}
|
|
}
|
|
}
|