mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-16 15:22:18 +08:00
122 lines
2.9 KiB
Plaintext
122 lines
2.9 KiB
Plaintext
import com.github.kr328.golang.GolangBuildTask
|
|
import com.github.kr328.golang.GolangPlugin
|
|
import java.io.FileOutputStream
|
|
import java.net.URL
|
|
import java.time.Duration
|
|
|
|
plugins {
|
|
kotlin("android")
|
|
id("com.android.library")
|
|
id("kotlinx-serialization")
|
|
id("golang-android")
|
|
}
|
|
|
|
val geoipDatabaseUrl =
|
|
"https://github.com/Dreamacro/maxmind-geoip/releases/latest/download/Country.mmdb"
|
|
val geoipInvalidate = Duration.ofDays(7)!!
|
|
val geoipOutput = buildDir.resolve("intermediates/golang_blob")
|
|
val golangSource = file("src/main/golang/native")
|
|
|
|
golang {
|
|
sourceSets {
|
|
create("foss") {
|
|
tags.set(listOf("foss"))
|
|
srcDir.set(file("src/foss/golang"))
|
|
}
|
|
create("premium") {
|
|
tags.set(listOf("premium", "without_gvisor", "without_system"))
|
|
srcDir.set(file("src/premium/golang"))
|
|
}
|
|
all {
|
|
fileName.set("libclash.so")
|
|
packageName.set("cfa/native")
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
productFlavors {
|
|
all {
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments("-DGO_SOURCE:STRING=${golangSource}")
|
|
arguments("-DGO_OUTPUT:STRING=${GolangPlugin.outputDirOf(project, null, null)}")
|
|
arguments("-DFLAVOR_NAME:STRING=$name")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path = file("src/main/cpp/CMakeLists.txt")
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":common"))
|
|
|
|
implementation(kotlin("stdlib-jdk7"))
|
|
implementation(deps.androidx.core)
|
|
implementation(deps.kotlin.coroutine)
|
|
implementation(deps.kotlin.serialization.json)
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
afterEvaluate {
|
|
tasks.withType(GolangBuildTask::class.java).forEach {
|
|
it.inputs.dir(golangSource)
|
|
}
|
|
}
|
|
|
|
task("downloadGeoipDatabase") {
|
|
val databaseFile = geoipOutput.resolve("Country.mmdb")
|
|
val moduleFile = geoipOutput.resolve("go.mod")
|
|
val sourceFile = geoipOutput.resolve("blob.go")
|
|
|
|
val moduleContent = """
|
|
module "cfa/blob"
|
|
""".trimIndent()
|
|
|
|
val sourceContent = """
|
|
package blob
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed Country.mmdb
|
|
var GeoipDatabase []byte
|
|
""".trimIndent()
|
|
|
|
outputs.dir(geoipOutput)
|
|
|
|
onlyIf {
|
|
System.currentTimeMillis() - databaseFile.lastModified() > geoipInvalidate.toMillis()
|
|
}
|
|
|
|
doLast {
|
|
geoipOutput.mkdirs()
|
|
|
|
moduleFile.writeText(moduleContent)
|
|
sourceFile.writeText(sourceContent)
|
|
|
|
URL(geoipDatabaseUrl).openConnection().getInputStream().use { input ->
|
|
FileOutputStream(databaseFile).use { output ->
|
|
input.copyTo(output)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
val downloadTask = tasks["downloadGeoipDatabase"]
|
|
|
|
tasks.forEach {
|
|
if (it.name.startsWith("externalGolangBuild")) {
|
|
it.dependsOn(downloadTask)
|
|
}
|
|
}
|
|
} |