From c0840f172dfe0ec292f49b0a49baeba2dc26b8ed Mon Sep 17 00:00:00 2001 From: Scott Alexander-Bown Date: Mon, 24 May 2021 08:45:07 +0100 Subject: [PATCH] Remove debugging info accidentally committed to smaple app --- .../rootbeer/sample/CheckForRootWorker.kt | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/app/src/main/java/com/scottyab/rootbeer/sample/CheckForRootWorker.kt b/app/src/main/java/com/scottyab/rootbeer/sample/CheckForRootWorker.kt index 6d352df..4c80097 100644 --- a/app/src/main/java/com/scottyab/rootbeer/sample/CheckForRootWorker.kt +++ b/app/src/main/java/com/scottyab/rootbeer/sample/CheckForRootWorker.kt @@ -11,30 +11,6 @@ class CheckForRootWorker(context: Context) { suspend operator fun invoke(): List = getRootResults() private fun getRootResults() = listOf( - RootItemResult( - "Root Management Apps", rootBeer.detectRootManagementApps( - arrayOf( - "com.tippingcanoe.hukd", - "com.google.android.gm", "bbc.mobile.weather" - ) - ) - ), - RootItemResult( - "Potentially Dangerous Apps", rootBeer.detectPotentiallyDangerousApps( - arrayOf( - "com.tippingcanoe.hukd", - "com.google.android.gm", "bbc.mobile.weather" - ) - ) - ), - RootItemResult( - "Root Cloaking Apps", rootBeer.detectRootCloakingApps( - arrayOf( - "com.google.android.apps.photos", - "com.alltrails.alltrails" - ) - ) - ), RootItemResult("TestKeys", rootBeer.detectTestKeys()), RootItemResult("BusyBoxBinary", rootBeer.checkForBusyBoxBinary()), RootItemResult("SU Binary", rootBeer.checkForSuBinary()),