Show EOL message if update check no-ops due to unsupported Android version

(cherry picked from commit 3a15c6b8438d1a740af0d6ffdec72347eec8cb83)
This commit is contained in:
arkon
2023-11-04 20:26:47 -04:00
committed by Jobobby04
parent 0232a65a26
commit bd165456ae
3 changed files with 5 additions and 1 deletions
@@ -85,6 +85,7 @@ class GetApplicationRelease(
sealed interface Result {
data class NewUpdate(val release: Release) : Result
data object NoNewUpdate : Result
data object OsTooOld : Result
data object ThirdPartyInstallation : Result
}
}