If you are looking for the equivalent of
implementation fileTree(dir: 'libs', include: ['*.jar'])
that would be:
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
If you are looking for the equivalent of
implementation fileTree(dir: 'libs', include: ['*.jar'])
that would be:
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))