I\'m developing an Android app. I need to convert a string array into an ArrayList. I\'ve read up on this, and all have cases where you add the values to the array in the ja
If anybody wondering how to do the same in kotlin
val universities = arrayListOf(*resources.getStringArray(R.array.universities))
universities will be ArrayList
universities
ArrayList