mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-16 04:42:17 +08:00
14a961f521
* add: Create dependabot.yml * chore: Create update-dependencies.yml * chore: Update update-dependencies.yml * fix: switch meta core upstream * chore: Update update-dependencies.yml * chore: Update update-dependencies.yml * chore: Update update-dependencies.yml * chore: Update build-unsigned.yaml * chore: Delete .github/dependabot.yml * chore: Run build-unsigned for each PR * chore: Better PR info and add repo dispatch listener * chore: Better actions name * chore: rename ci file and try to fix failure * chore: add manual auto project version bump * chore: Fix wrong command usage * chore: fix path * chore: Fix * chore: Fix bump project version * chore: can this pass compile? * chore: update core to newest alpha * Update update-dependencies.yaml * chore: try to change core upstream * chore: remove all go get update to pass compile * Revert "chore: remove all go get update to pass compile" This reverts commitaad0ec3b83
. * Revert "chore: can this pass compile?" This reverts commit635289639b
. * chore: force update submodule * chore: change upstream to alpha * chore: remove rubbish * chore: change upstream and update core * chore: add version fixed packages * chore: small fix * chore: update go dependencies * chore: revert some depends to old versions to fix compile * fix: fix compile error caused by core's deprecation * chore: fix actions and update core * chore: update clash core * fix: fix block calling * chore: update app version * chore: small fix to actions * feat: add Hysteria2 for UI * chore: revert version update for actions test * chore: try recover main go mod upgrade * chore: fix tag logic in release actions * Bump version to 2.8.10 (208010) * chore: remove test code in actions --------- Co-authored-by: GitHub Action <action@github.com>
176 lines
4.6 KiB
Plaintext
176 lines
4.6 KiB
Plaintext
@file:Suppress("UNUSED_VARIABLE")
|
|
|
|
import com.android.build.gradle.AppExtension
|
|
import com.android.build.gradle.BaseExtension
|
|
import java.net.URL
|
|
import java.util.*
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven("https://maven.kr328.app/releases")
|
|
}
|
|
dependencies {
|
|
classpath(libs.build.android)
|
|
classpath(libs.build.kotlin.common)
|
|
classpath(libs.build.kotlin.serialization)
|
|
classpath(libs.build.ksp)
|
|
classpath(libs.build.golang)
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven("https://maven.kr328.app/releases")
|
|
}
|
|
|
|
val isApp = name == "app"
|
|
|
|
apply(plugin = if (isApp) "com.android.application" else "com.android.library")
|
|
|
|
extensions.configure<BaseExtension> {
|
|
defaultConfig {
|
|
if (isApp) {
|
|
applicationId = "com.github.metacubex.clash"
|
|
}
|
|
|
|
minSdk = 21
|
|
targetSdk = 31
|
|
|
|
versionName = "2.8.10"
|
|
versionCode = 208010
|
|
|
|
resValue("string", "release_name", "v$versionName")
|
|
resValue("integer", "release_code", "$versionCode")
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
abiFilters("arm64-v8a", "armeabi-v7a", "x86", "x86_64")
|
|
}
|
|
}
|
|
|
|
if (!isApp) {
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
} else {
|
|
setProperty("archivesBaseName", "cmfa-$versionName")
|
|
}
|
|
}
|
|
|
|
ndkVersion = "23.0.7599858"
|
|
|
|
compileSdkVersion(defaultConfig.targetSdk!!)
|
|
|
|
if (isApp) {
|
|
packagingOptions {
|
|
resources {
|
|
excludes.add("DebugProbesKt.bin")
|
|
}
|
|
}
|
|
}
|
|
|
|
productFlavors {
|
|
flavorDimensions("feature")
|
|
|
|
create("meta-alpha") {
|
|
isDefault = true
|
|
dimension = flavorDimensionList[0]
|
|
versionNameSuffix = ".Meta-Alpha"
|
|
|
|
buildConfigField("boolean", "PREMIUM", "Boolean.parseBoolean(\"false\")")
|
|
|
|
if (isApp) {
|
|
applicationIdSuffix = ".meta"
|
|
}
|
|
}
|
|
|
|
create("meta") {
|
|
|
|
dimension = flavorDimensionList[0]
|
|
versionNameSuffix = ".Meta"
|
|
|
|
buildConfigField("boolean", "PREMIUM", "Boolean.parseBoolean(\"false\")")
|
|
|
|
if (isApp) {
|
|
applicationIdSuffix = ".meta"
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
getByName("meta") {
|
|
java.srcDirs("src/foss/java")
|
|
}
|
|
getByName("meta-alpha") {
|
|
java.srcDirs("src/foss/java")
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
val keystore = rootProject.file("signing.properties")
|
|
if (keystore.exists()) {
|
|
create("release") {
|
|
val prop = Properties().apply {
|
|
keystore.inputStream().use(this::load)
|
|
}
|
|
|
|
storeFile = rootProject.file("release.keystore")
|
|
storePassword = prop.getProperty("keystore.password")!!
|
|
keyAlias = prop.getProperty("key.alias")!!
|
|
keyPassword = prop.getProperty("key.password")!!
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
named("release") {
|
|
isMinifyEnabled = isApp
|
|
isShrinkResources = isApp
|
|
signingConfig = signingConfigs.findByName("release")
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
named("debug") {
|
|
versionNameSuffix = ".debug"
|
|
}
|
|
}
|
|
|
|
buildFeatures.apply {
|
|
dataBinding {
|
|
isEnabled = name != "hideapi"
|
|
}
|
|
}
|
|
|
|
if (isApp) {
|
|
this as AppExtension
|
|
|
|
splits {
|
|
abi {
|
|
isEnable = true
|
|
isUniversalApk = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
task("clean", type = Delete::class) {
|
|
delete(rootProject.buildDir)
|
|
}
|
|
|
|
tasks.wrapper {
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
|
|
doLast {
|
|
val sha256 = URL("$distributionUrl.sha256").openStream()
|
|
.use { it.reader().readText().trim() }
|
|
|
|
file("gradle/wrapper/gradle-wrapper.properties")
|
|
.appendText("distributionSha256Sum=$sha256")
|
|
}
|
|
}
|