mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix: Use java.io.File.copyTo instead
This commit is contained in:
parent
3bb5e70d1c
commit
f67425cde3
@ -18,8 +18,6 @@ import io.flutter.embedding.engine.FlutterEngine
|
|||||||
import io.flutter.plugin.common.MethodChannel
|
import io.flutter.plugin.common.MethodChannel
|
||||||
import io.flutter.plugin.common.MethodChannel.Result
|
import io.flutter.plugin.common.MethodChannel.Result
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.nio.file.Files
|
|
||||||
import java.nio.file.StandardCopyOption
|
|
||||||
|
|
||||||
class MainActivity : FlutterActivity() {
|
class MainActivity : FlutterActivity() {
|
||||||
private val PATCHER_CHANNEL = "app.revanced.manager.flutter/patcher"
|
private val PATCHER_CHANNEL = "app.revanced.manager.flutter/patcher"
|
||||||
@ -127,11 +125,7 @@ class MainActivity : FlutterActivity() {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
Files.copy(
|
originalFile.copyTo(inputFile, true)
|
||||||
originalFile.toPath(),
|
|
||||||
inputFile.toPath(),
|
|
||||||
StandardCopyOption.REPLACE_EXISTING
|
|
||||||
)
|
|
||||||
|
|
||||||
handler.post {
|
handler.post {
|
||||||
installerChannel.invokeMethod(
|
installerChannel.invokeMethod(
|
||||||
|
Loading…
Reference in New Issue
Block a user