how to pass List<String> to putExtra
I'm making a music player in Kotlin, I translated java code from the Internet to Kotlin, but I can't pass List to putExtra, could you tell me how and where to beat it so that everything is calmly transmitted to me. The List contains the path to the song.
MainActivity:
package com.example.zevamusic
import android.Manifest
import android.content.Intent
import android.os.Bundle
import android.os.Environment
import android.widget.AdapterView
import androidx.appcompat.app.AppCompatActivity
import...