I want to start another activity on Android but I get this error:
Please specify constructor invocation; classifier \'Page2\' does not have a companio
From activity to activity
val intent = Intent(this, YourActivity::class.java) startActivity(intent)
From fragment to activity
val intent = Intent(activity, YourActivity::class.java) startActivity(intent)