map
Adds the given pluginIds to map as path.
For example:
map(
"org.mozilla.rust-android-gradle",
"net.bytebuddy.byte-buddy-gradle-plugin",
)Content copied to clipboard
abstract fun map(vararg pluginIdsAndPaths: Pair<CharSequence, CharSequence>)
Content copied to clipboard
Adds the given pair to map the plugin ids to the specified mapped paths.
For example:
map(
"org.mozilla.rust-android-gradle" to "Mozilla.Rust.AndroidPlugin",
"net.bytebuddy.byte-buddy-gradle-plugin" to "Bytebuddy.GradlePlugin",
)Content copied to clipboard
Parameters
plugin Ids And Paths
The first parameter of pairs is plugin ids, the second parameter is mapped paths.