remove println lol

This commit is contained in:
Ax333l 2024-12-20 21:20:17 +01:00
parent be4066bbf6
commit 1982ac27e2
No known key found for this signature in database
GPG Key ID: D2B4D85271127D23

View File

@ -13,7 +13,6 @@ object RequestInstallAppsContract : ActivityResultContract<String, Boolean>(), K
override fun createIntent(context: Context, input: String) = Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES, Uri.fromParts("package", input, null))
override fun parseResult(resultCode: Int, intent: Intent?): Boolean {
println("Finished")
return pm.canInstallPackages()
}
}