I want to start another activity on Android but I get this error:
Please specify constructor invocation; classifier \'Page2\' does not have a companio
Well, I found these 2 ways to be the simplest of all outcomes:
Way #1:
accoun_btn.setOnClickListener {
            startActivity(Intent(this@MainActivity, SecondActivity::class.java))
        }
Way#2: (In a generic way)
    accoun_btn.setOnClickListener {
        startActivity(this)
    }
    private inline fun  startActivity(context: Context) {
            startActivity(Intent(context, T::class.java))
        }