ClashMetaForAndroid/build.gradle.kts
Steve Johnson 14a961f521
Update Meta Core to v1.16.0 and add actions to help maintain the project (#147)
* 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 commit aad0ec3b83.

* Revert "chore: can this pass compile?"

This reverts commit 635289639b.

* 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>
2023-10-22 15:57:35 +08:00

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")
}
}