We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No response
Seams like after
PatchCommand.kt :: 317 // region Save apk.copyTo(temporaryFilesPath.resolve(apk.name), overwrite = true).apply { patcherResult.applyTo(this) }
All "files" contained in
patcherResult.dexFiles
Have streams open, and this prevents OS to delete them A possible solution, since that streams are not used anymore, is to close them one by one:
// region Save apk.copyTo(temporaryFilesPath.resolve(apk.name), overwrite = true).apply { patcherResult.applyTo(this) patcherResult.dexFiles.forEach{it.stream.close()} }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug description
Error logs
No response
Solution
Seams like after
All "files" contained in
Have streams open, and this prevents OS to delete them
A possible solution, since that streams are not used anymore, is to close them one by one:
Additional context
No response
Acknowledgements
The text was updated successfully, but these errors were encountered: