Commit b6496508 authored by Govind Dixit's avatar Govind Dixit

conflicts resolved, code improved

parent cca9bd88
...@@ -87,21 +87,16 @@ class SettingsFragment : Fragment(), SettingsView, AdapterView.OnItemClickListen ...@@ -87,21 +87,16 @@ class SettingsFragment : Fragment(), SettingsView, AdapterView.OnItemClickListen
shareIntent.putExtra(Intent.EXTRA_TEXT, shareSub) shareIntent.putExtra(Intent.EXTRA_TEXT, shareSub)
startActivity(Intent.createChooser(shareIntent, getString(R.string.msg_share_using))) startActivity(Intent.createChooser(shareIntent, getString(R.string.msg_share_using)))
} }
resources.getString(R.string.title_rate_us) -> resources.getString(R.string.title_rate_us) -> startAppPlayStore()
startAppPlayStore()
} }
} }
fun getMarketAppLink(): String {
return getString(R.string.market_link)
}
fun getMarketWebLink(): String {
return getString(R.string.play_store_link)
}
private fun startAppPlayStore() { private fun startAppPlayStore() {
try { try {
fun getMarketAppLink()= getString(R.string.market_link)
startActivity(Intent(Intent.ACTION_VIEW, getMarketAppLink().toUri())) startActivity(Intent(Intent.ACTION_VIEW, getMarketAppLink().toUri()))
} catch (error: ActivityNotFoundException) { } catch (error: ActivityNotFoundException) {
fun getMarketWebLink() = getString(R.string.play_store_link)
startActivity(Intent(Intent.ACTION_VIEW, getMarketWebLink().toUri())) startActivity(Intent(Intent.ACTION_VIEW, getMarketWebLink().toUri()))
} }
} }
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment