rephrase sentence

This commit is contained in:
X1nto 2020-05-22 19:40:24 +04:00
parent 7eae882508
commit fd5eddd3e4
1 changed files with 3 additions and 3 deletions

View File

@ -96,7 +96,7 @@ open class Home : BaseFragment() {
val mgUninstall = Intent(Intent.ACTION_DELETE, uri)
startActivity(mgUninstall)
} catch (e: ActivityNotFoundException){
Toast.makeText(requireContext(), "App already uninstalled", Toast.LENGTH_SHORT).show()
Toast.makeText(requireContext(), "App not installed", Toast.LENGTH_SHORT).show()
activity?.recreate()
}
@ -111,7 +111,7 @@ open class Home : BaseFragment() {
)
startActivity(intent)
} catch (e: ActivityNotFoundException){
Toast.makeText(requireContext(), "App is uninstalled", Toast.LENGTH_SHORT).show()
Toast.makeText(requireContext(), "App not installed", Toast.LENGTH_SHORT).show()
activity?.recreate()
}
}
@ -131,7 +131,7 @@ open class Home : BaseFragment() {
val vanUninstall = Intent(Intent.ACTION_DELETE, uri)
startActivity(vanUninstall)
} catch (e: ActivityNotFoundException){
Toast.makeText(requireContext(), "App already uninstalled", Toast.LENGTH_SHORT).show()
Toast.makeText(requireContext(), "App not installed", Toast.LENGTH_SHORT).show()
activity?.recreate()
}
}