<Kotlin: I have a problem while switching from one...
# stackoverflow
u
Kotlin: I have a problem while switching from one Activity to another? I have a problem when I want to switch between two activities. This is my code on the first activity. I want to switch to the CatDoorActivity. modifier = Modifier.clickable { val intent = Intent(this, CatDoorActivity::class.java) intent.putExtra("UUID", deviceUUID).putExtra("TITLE", deviceTitle) this.startActivity(intent) } My Problem is this exception after running that code: android.content.ActivityNotFoundException: Unable to find explicit...