do not initially show the "Purchase Simple Thank You" button in the app settings

This commit is contained in:
tibbi 2018-07-16 21:22:11 +02:00
parent 93c447ec50
commit 6d69f7727e
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ ext {
}
dependencies {
implementation 'com.simplemobiletools:commons:4.4.17'
implementation 'com.simplemobiletools:commons:4.4.24'
implementation 'joda-time:joda-time:2.9.9'
implementation 'com.facebook.stetho:stetho:1.5.0'
implementation 'com.android.support:multidex:1.0.3'

View File

@ -97,7 +97,7 @@ class SettingsActivity : SimpleActivity() {
}
private fun setupPurchaseThankYou() {
settings_purchase_thank_you_holder.beVisibleIf(!isThankYouInstalled())
settings_purchase_thank_you_holder.beVisibleIf(config.appRunCount > 10 && !isThankYouInstalled())
settings_purchase_thank_you_holder.setOnClickListener {
launchPurchaseThankYouIntent()
}