com.likethesalad.tools.resource.collector.merger.ResourceMerger.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resource-collector Show documentation
Show all versions of resource-collector Show documentation
Plugin that gathers resources from Android projects for compilation purposes.
package com.likethesalad.tools.resource.collector.merger
import com.likethesalad.tools.resource.api.collection.ResourceCollection
interface ResourceMerger {
fun merge(collections: List): ResourceCollection
}