Android Studio – KOTLIN Find Match Between 2 Lists
So basically I've 2 lists: val list = context.packageManager.getInstalledPackages(0); var listOfAvs: MutableList<String> = arrayListOf( "com.app1", "com.app2" ) I want to find common elements between the 2 lists. To make both same kind of list I wrote this code val listMuted:…