When using kotlin+ coroutine, compiling APK will throw Java lang.VerifyError: Verifier rejected class …
Cause: a supend method marked by a coroutine uses @JvmStatic annotation, resulting in a verify error when compiling and parsing code.
Solution: remove the annotation of the supend method.