85 lines
2.9 KiB
Groovy
85 lines
2.9 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
apply from: 'dependencies.gradle'
|
|
apply from: 'vspace-bridge/config.gradle'
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.7.20'
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
maven { url "https://maven.google.com" }
|
|
}
|
|
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:7.1.3"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
// 使用了 1.2.21 在蓝叠模拟器上无法进入首页? 但是不使用又会出现触发 V3 签名...
|
|
classpath 'io.github.leon406:AndResGuard-gradle-plugin:1.2.23'
|
|
classpath 'com.sensorsdata.analytics.android:android-gradle-plugin2:3.5.3'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
maven {
|
|
url "https://nexus.shanqu.cc/repository/lightgame-public/"
|
|
credentials {
|
|
username("lg_android")
|
|
password("u9gZYH4MQEwLLQZK")
|
|
}
|
|
}
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
maven { url 'https://maven.aliyun.com/nexus/content/repositories/releases/' }
|
|
maven { url 'https://artifact.bytedance.com/repository/Volcengine/'}
|
|
maven { url 'https://artifact.bytedance.com/repository/pangle' }
|
|
maven {
|
|
url 'http://maven.aliyun.com/nexus/content/repositories/releases/'
|
|
name 'aliyun'
|
|
allowInsecureProtocol true
|
|
}
|
|
// 配置HMS Core SDK的Maven仓地址。
|
|
maven { url 'https://developer.huawei.com/repo/' }
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
subproject ->
|
|
afterEvaluate {
|
|
if ((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
|
|
if (!android.compileSdkVersion) {
|
|
android {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
}
|
|
}
|
|
android {
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
|
|
// for those defined in AndroidManifest.xml
|
|
manifestPlaceholders = [
|
|
manifestApplicationId: "${applicationId}",
|
|
tencentAppId : "${TENCENT_APPID}",
|
|
]
|
|
}
|
|
lintOptions.abortOnError false
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/NOTICE'
|
|
exclude 'META-INF/LICENSE'
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
exclude 'META-INF/services/javax.annotation.processing.Processor'
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
} |