fix: also delete temporary files when uninstalling

This commit is contained in:
oSumAtrIX 2023-08-24 16:53:54 +02:00
parent 3dd875d14c
commit 52c3be23f2
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 1 additions and 0 deletions

View File

@ -96,6 +96,7 @@ internal sealed class AdbManager(deviceSerial: String? = null) : Closeable {
device.run(UMOUNT.applyReplacement(packageName))
device.run(DELETE.applyReplacement(PATCHED_APK_PATH).applyReplacement())
device.run(DELETE.applyReplacement(MOUNT_PATH).applyReplacement())
device.run(DELETE.applyReplacement(TMP_PATH).applyReplacement())
super.uninstall(packageName)
}