I'm seeing a really odd `NoClassDefFoundError`, an...
# android
c
I'm seeing a really odd
NoClassDefFoundError
, anyone have any thoughts? Throws a `NoClassDefFoundError`:
Copy code
val intent = Intent(this, MyActivity::class.java)
startActivity(intent)
Works fine:
Copy code
Handler(Looper.getMainLooper()).post { 
  val intent = Intent(this, MyActivity::class.java)
  startActivity(intent)
}
EDIT: This only happens pre-lollipop.