I want to start another activity on Android but I get this error:
Please specify constructor invocation; classifier \'Page2\' does not have a companio
Simply you can start an Activity in KOTLIN by using this simple method,
Activity
KOTLIN
val intent = Intent(this, SecondActivity::class.java) intent.putExtra("key", value) startActivity(intent)