As I\'m learning Kotlin for Android development, I\'m now trying the basic programs like hello world and how to navigate from one activity to another activity , there is no
Send value from HomeActivity
val intent = Intent(this@HomeActivity,ProfileActivity::class.java) intent.putExtra("Username","John Doe") startActivity(intent)
Get values in ProfileActivity
val profileName=intent.getStringExtra("Username")