This commit is contained in:
Horis
2025-04-27 18:22:52 +08:00
parent 18daa53451
commit a415ccb68a
2 changed files with 3 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ cn.hutool.core.util.**{*;}
*** mNavButtonView;
}
# FileDocExtensions.kt TreeDocumentFileConstructor
# FileDocExtensions.kt treeDocumentFileConstructor
-keep class androidx.documentfile.provider.TreeDocumentFile
# JsoupXpath

View File

@@ -45,7 +45,7 @@ data class FileDoc(
fun asDocumentFile(): DocumentFile? {
if (isContentScheme) {
return if (isDir) {
TreeDocumentFileConstructor.newInstance(null, appCtx, uri) as DocumentFile
treeDocumentFileConstructor.newInstance(null, appCtx, uri) as DocumentFile
} else {
DocumentFile.fromSingleUri(appCtx, uri)
}
@@ -62,7 +62,7 @@ data class FileDoc(
companion object {
private val TreeDocumentFileConstructor by lazy {
private val treeDocumentFileConstructor by lazy {
Class.forName("androidx.documentfile.provider.TreeDocumentFile")
.getDeclaredConstructor(
DocumentFile::class.java,