chuck
06/02/2017, 9:20 PMNoClassDefFoundError, anyone have any thoughts?
Throws a `NoClassDefFoundError`:
val intent = Intent(this, MyActivity::class.java)
startActivity(intent)
Works fine:
Handler(Looper.getMainLooper()).post {
val intent = Intent(this, MyActivity::class.java)
startActivity(intent)
}
EDIT: This only happens pre-lollipop.