Skip to content

Commit

Permalink
fix: also delete temporary files when uninstalling
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Aug 24, 2023
1 parent 3dd875d commit 52c3be2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/kotlin/app/revanced/utils/adb/AdbManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 52c3be2

Please sign in to comment.