We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef87f9a commit d4969aeCopy full SHA for d4969ae
presentation/src/main/java/org/cryptomator/presentation/ui/fragment/WelcomeLicenseFragment.kt
@@ -51,13 +51,15 @@ class WelcomeLicenseFragment : BaseFragment<FragmentWelcomeLicenseBinding>(Fragm
51
}
52
53
private fun setupIapUi() {
54
+ val app = requireActivity().application as CryptomatorApp
55
licenseContentViewBinder.bindInitialIapLayout()
56
licenseContentViewBinder.bindLegalLinks()
57
licenseContentViewBinder.bindPurchaseButtons(
58
activity = requireActivity(),
- app = requireActivity().application as CryptomatorApp,
59
+ app = app,
60
onTrialClicked = { listener?.onStartTrial() }
61
)
62
+ licenseContentViewBinder.loadAndBindPrices(app)
63
64
65
private fun setupLicenseEntryUi() {
0 commit comments