Fix build

This commit is contained in:
LoveSy 2023-04-12 11:16:44 +08:00
parent 25fff8a2a8
commit c4b670709b
No known key found for this signature in database

View File

@ -177,12 +177,14 @@ val symbolsReleaseTask = tasks.register<Jar>("generateReleaseSymbolsJar") {
from("${project.buildDir.absolutePath}/symbols/release")
exclude("**/dex_builder")
archiveClassifier.set("symbols")
archiveBaseName.set("release")
}
val symbolsStandaloneTask = tasks.register<Jar>("generateStandaloneSymbolsJar") {
from("${project.buildDir.absolutePath}/symbols/standalone")
exclude("**/dex_builder")
archiveClassifier.set("symbols")
archiveBaseName.set("standalone")
}
val ver = FileRepositoryBuilder().findGitDir(rootProject.file(".git")).runCatching {