mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-26 13:12:59 +00:00
rephrase sentence
This commit is contained in:
parent
7eae882508
commit
fd5eddd3e4
1 changed files with 3 additions and 3 deletions
|
@ -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()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue