Skip to content

Commit 8f9cc61

Browse files
committed
fix(android): resolve compile error with RN 0.80.x
Fixes #93
1 parent 0f99946 commit 8f9cc61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/com/alpha0010/fs/FileAccessModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ class FileAccessModule(reactContext: ReactApplicationContext) :
213213
ioScope.launch {
214214
try {
215215
val internalStat = StatFs(reactApplicationContext.filesDir.absolutePath)
216-
val results = mutableMapOf(
216+
val results = mutableMapOf<String, Any>(
217217
"internal_free" to internalStat.availableBytes,
218218
"internal_total" to internalStat.totalBytes
219219
)

0 commit comments

Comments
 (0)