File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
main/java/org/thoughtcrime/securesms/preferences/prosettings
play/kotlin/org/thoughtcrime/securesms/pro/subscription Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import androidx.compose.foundation.layout.padding
1818import androidx.compose.foundation.layout.size
1919import androidx.compose.foundation.layout.systemBars
2020import androidx.compose.foundation.layout.widthIn
21+ import androidx.compose.foundation.layout.windowInsetsBottomHeight
2122import androidx.compose.foundation.rememberScrollState
2223import androidx.compose.foundation.verticalScroll
2324import androidx.compose.material3.ExperimentalMaterial3Api
@@ -95,6 +96,9 @@ fun BaseProSettingsScreen(
9596 )
9697
9798 content()
99+
100+ Spacer (modifier = Modifier .height(LocalDimensions .current.spacing))
101+ Spacer (modifier = Modifier .windowInsetsBottomHeight(WindowInsets .systemBars))
98102 }
99103 }
100104}
Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ fun ChoosePlanNoBilling(
7575 " huawei" -> " Huawei App Gallery"
7676 else -> " APK"
7777 })
78- .put(APP_PRO_KEY , NonTranslatableStringConstants .APP_PRO )
7978 .put(PRO_KEY , NonTranslatableStringConstants .PRO )
8079 .put(PLATFORM_STORE_KEY , defaultGoogleStore)
8180 .put(PLATFORM_STORE2_KEY , defaultAppleStore)
@@ -115,6 +114,7 @@ fun ChoosePlanNoBilling(
115114 .put(APP_NAME_KEY , NonTranslatableStringConstants .APP_NAME )
116115 .put(PLATFORM_STORE_KEY , defaultGoogleStore)
117116 .put(APP_PRO_KEY , NonTranslatableStringConstants .APP_PRO )
117+ .put(PRO_KEY , NonTranslatableStringConstants .PRO )
118118 .format(),
119119 iconRes = R .drawable.ic_smartphone
120120 )
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class PlayStoreSubscriptionManager @Inject constructor(
3333 override val description = " "
3434 override val iconRes = null
3535
36- override val supportsBilling: Boolean = true
36+ override val supportsBilling: Boolean = false
3737
3838 override val quickRefundExpiry: Instant = Instant .now() // todo PRO implement properly
3939 override val quickRefundUrl = " https://support.google.com/googleplay/workflow/9813244"
You can’t perform that action at this time.
0 commit comments