notify the user to use the latest version before sending an email

This commit is contained in:
tibbi 2019-10-27 09:55:49 +01:00
parent 9a63be650f
commit 9b3df6ca35
2 changed files with 3 additions and 2 deletions

View file

@ -7,7 +7,7 @@ buildscript {
propMinSdkVersion = 21
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '5.18.12'
propVersionName = '5.18.13'
kotlin_version = '1.3.50'
}

View file

@ -75,7 +75,8 @@ class AboutActivity : BaseSimpleActivity() {
baseConfig.wasBeforeAskingShown = true
about_email.movementMethod = LinkMovementMethod.getInstance()
about_email.setOnClickListener(null)
ConfirmationDialog(this, "", R.string.before_asking_question_read_faq, R.string.read_it, R.string.skip) {
val msg = "${getString(R.string.before_asking_question_read_faq)}\n\n${getString(R.string.make_sure_latest)}"
ConfirmationDialog(this, msg, 0, R.string.read_it, R.string.skip) {
about_faq_label.performClick()
}
}