map
Adds the given dependencies to map as path.
For example:
map(
"androidx.compose.ui:ui",
"androidx.appcompat:appcompat",
"androidx.activity:activity-compose",
)Content copied to clipboard
abstract fun map(vararg dependenciesAndPaths: Pair<CharSequence, CharSequence>)
Content copied to clipboard
Adds the given pair to map the dependencies to the specified mapped paths.
For example:
map(
"androidx.compose.ui:ui" to "Compose.Ui",
"androidx.appcompat:appcompat" to "Appcompat.Core",
)Content copied to clipboard
Parameters
dependencies And Paths
The first parameter of pairs is dependencies, the second parameter is mapped paths.