6.7.0 - Alpha6 - 本地化 Expandable Layout (版本 1.6.0), Recyclerview Flexible Divider (版本 1.4.0)

This commit is contained in:
SuperMonster003
2025-09-24 15:28:04 +08:00
parent 1d18e5652a
commit 542e86f8fa
8 changed files with 32 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
"expandable-layout-1.6.0.aar"
.let { path ->
rootProject.extra["configurationName"].toString().let { name ->
configurations.maybeCreate(name)
file(path).takeIf { it.exists() }?.also {
artifacts.add(name, it)
} ?: throw Exception("File not found: \"$path\"")
}
}

View File

@@ -0,0 +1,9 @@
"recyclerview-flexibledivider-1.4.0.aar"
.let { path ->
rootProject.extra["configurationName"].toString().let { name ->
configurations.maybeCreate(name)
file(path).takeIf { it.exists() }?.also {
artifacts.add(name, it)
} ?: throw Exception("File not found: \"$path\"")
}
}