relocate

open override fun relocate(pattern: String, destination: String, action: Action<SimpleRelocator>?)

Relocate classes and resources matching pattern to destination using SimpleRelocator.


open override fun <R : Relocator> relocate(clazz: Class<R>, action: Action<R>?)
open override fun <R : Relocator> relocate(relocator: R, action: Action<R>?)

Relocate classes and resources using a Relocator.


inline fun <R : Relocator> relocate()
inline fun <R : Relocator> relocate(action: Action<R>?)

Relocate classes and resources using a Relocator.

This is a convenience method for relocate with a reified type parameter for Kotlin.