flipping the order of WhatsNew items

This commit is contained in:
tibbi
2019-07-25 11:32:26 +02:00
parent f23f0e2c77
commit cac8f486ac

View File

@ -154,8 +154,8 @@ class MainActivity : SimpleActivity(), Calculator {
private fun checkWhatsNewDialog() { private fun checkWhatsNewDialog() {
arrayListOf<Release>().apply { arrayListOf<Release>().apply {
add(Release(28, R.string.release_28))
add(Release(18, R.string.release_18)) add(Release(18, R.string.release_18))
add(Release(28, R.string.release_28))
checkWhatsNew(this, BuildConfig.VERSION_CODE) checkWhatsNew(this, BuildConfig.VERSION_CODE)
} }
} }