At some point, the Kotlin compiler changed such th...
# compiler
g
At some point, the Kotlin compiler changed such that
'when' expression must be exhaustive
changed from being considered a warning to being considered an actual compile error. Possibly happened in Kotlin 1.7. Is there any way I can make these be only warnings again for the entirety of a particular Android project / for a particular gradle compile task? (Reason being, trying to set up a CI job that tests the result of some code gen -> code gen often times creates new enum cases -> these cause non-exhaustive when statement compile errors -> these are fine to ignore for the purposes of this CI job)