Restore downloads menu option in AppDetailsFragment

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2023-07-06 12:00:14 +05:30
parent 5094a3faca
commit ae1c5a7f92
2 changed files with 8 additions and 0 deletions

View File

@@ -289,6 +289,10 @@ class AppDetailsFragment : BaseFragment(R.layout.fragment_details) {
sheet.show(childFragmentManager, ManualDownloadSheet.TAG)
}
R.id.menu_download_manager -> {
findNavController().navigate(R.id.downloadFragment)
}
R.id.action_playstore -> {
view.context.browse("${Constants.SHARE_URL}${app.packageName}")
}