|
|
@ -176,7 +176,11 @@ internal fun getResFileSpecs( |
|
|
|
""".trimIndent() |
|
|
|
""".trimIndent() |
|
|
|
) |
|
|
|
) |
|
|
|
.addParameter("path", String::class) |
|
|
|
.addParameter("path", String::class) |
|
|
|
.addParameter("byteCount", Int::class) |
|
|
|
.addParameter( |
|
|
|
|
|
|
|
ParameterSpec.builder("byteCount", Int::class) |
|
|
|
|
|
|
|
.defaultValue("%L", 8192) |
|
|
|
|
|
|
|
.build() |
|
|
|
|
|
|
|
) |
|
|
|
.returns( |
|
|
|
.returns( |
|
|
|
ClassName("kotlinx.coroutines.flow", "Flow") |
|
|
|
ClassName("kotlinx.coroutines.flow", "Flow") |
|
|
|
.plusParameter(ByteArray::class.asTypeName()) |
|
|
|
.plusParameter(ByteArray::class.asTypeName()) |
|
|
|