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

@@ -1,7 +1,7 @@
{ {
"$data": { "$data": {
"v6.7.0": { "v6.7.0": {
"released_date": "2025/09/10", "released_date": "2025/09/24",
"feature": [ "feature": [
"zip 模块, 用于文件压缩与解压缩操作 (Ref to [Auto.js Pro](https://g.pro.autojs.org/)) (参阅 项目文档 > [Zip](https://docs.autojs6.com/#/zip))", "zip 模块, 用于文件压缩与解压缩操作 (Ref to [Auto.js Pro](https://g.pro.autojs.org/)) (参阅 项目文档 > [Zip](https://docs.autojs6.com/#/zip))",
"mediainfo 模块, 用于查看媒体文件的详细信息 (参阅 项目文档 > [媒体信息](https://docs.autojs6.com/#/mediainfo))", "mediainfo 模块, 用于查看媒体文件的详细信息 (参阅 项目文档 > [媒体信息](https://docs.autojs6.com/#/mediainfo))",
@@ -36,6 +36,9 @@
"Gradle 构建脚本提升 7z 格式文件的解压效率" "Gradle 构建脚本提升 7z 格式文件的解压效率"
], ],
"dependency": [ "dependency": [
"本地化 Root Shell 版本 1.6",
"本地化 Expandable Layout 版本 1.6.0",
"本地化 Recyclerview Flexible Divider 版本 1.4.0",
"附加 Androidx Core (KTX) 版本 1.15.0", "附加 Androidx Core (KTX) 版本 1.15.0",
"升级 Gradle 版本 8.14 -> 8.14.3", "升级 Gradle 版本 8.14 -> 8.14.3",
"升级 Apache Commons 版本 3.16.0 -> 3.18.0", "升级 Apache Commons 版本 3.16.0 -> 3.18.0",

View File

@@ -324,13 +324,15 @@ dependencies /* Material Dialogs */ {
dependencies /* Layout */ { dependencies /* Layout */ {
// Expandable Layout // Expandable Layout
implementation("com.github.aakira:expandable-layout:1.6.0") // implementation("com.github.aakira:expandable-layout:1.6.0")
implementation(project(":libs:expandable-layout-1.6.0"))
// Expandable RecyclerView // Expandable RecyclerView
implementation("com.bignerdranch.android:expandablerecyclerview:3.0.0-RC1") implementation("com.bignerdranch.android:expandablerecyclerview:3.0.0-RC1")
// Flexible Divider // Flexible Divider
implementation("com.yqritc:recyclerview-flexibledivider:1.4.0") // implementation("com.yqritc:recyclerview-flexibledivider:1.4.0")
implementation(project(":libs:recyclerview-flexibledivider-1.4.0"))
} }
dependencies /* View */ { dependencies /* View */ {

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

View File

@@ -31,6 +31,8 @@ private val libs = listOf(
"markwon-syntax-highlight-4.6.2", "markwon-syntax-highlight-4.6.2",
"root-shell-1.6", "root-shell-1.6",
"expandable-layout-1.6.0",
"recyclerview-flexibledivider-1.4.0"
) )
include( include(

View File

@@ -1,5 +1,5 @@
#Fri Sep 12 14:28:28 CST 2025 #Mon Sep 22 20:20:58 CST 2025
BUILD_TIME=1757658508250 BUILD_TIME=1758543658764
COMPILE_SDK_VERSION=35 COMPILE_SDK_VERSION=35
IMAGE_QUANT_CMAKE_VERSION=3.22.1 IMAGE_QUANT_CMAKE_VERSION=3.22.1
IMAGE_QUANT_NDK_VERSION=26.1.10909125 IMAGE_QUANT_NDK_VERSION=26.1.10909125
@@ -24,6 +24,6 @@ RAPID_OCR_OPENCV_MOBILE_LABEL_VERSION=13
RAPID_OCR_OPENCV_MOBILE_VERSION=4.5.3 RAPID_OCR_OPENCV_MOBILE_VERSION=4.5.3
TARGET_SDK_VERSION=35 TARGET_SDK_VERSION=35
TARGET_SDK_VERSION_INRT=29 TARGET_SDK_VERSION_INRT=29
VERSION_BUILD=3362 VERSION_BUILD=3371
VERSION_NAME=6.7.0 Alpha5 VERSION_NAME=6.7.0 Alpha6
VSCODE_EXT_REQUIRED_VERSION=1.0.8 VSCODE_EXT_REQUIRED_VERSION=1.0.8