Skip to content

Commit

Permalink
fix: Add missing log when calling UserAdbManager#install
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Nov 13, 2023
1 parent 49e6081 commit 90b612b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/kotlin/app/revanced/library/adb/AdbManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ sealed class AdbManager private constructor(deviceSerial: String? = null) {
private val packageManager = PackageManager(device)

override fun install(apk: Apk) {
logger.info("Installing ${apk.file.name}")

PackageManager(device).install(apk.file)

super.install(apk)
Expand Down

0 comments on commit 90b612b

Please sign in to comment.