ru.pocketbyte.locolaser.kotlinmpp.KotlinAndroidResourcesConfigBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resource-kotlin-mpp Show documentation
Show all versions of resource-kotlin-mpp Show documentation
Implementation of platform for LocoLaser tool to work with Kotlin MPP projects.
The newest version!
package ru.pocketbyte.locolaser.kotlinmpp
import ru.pocketbyte.locolaser.config.resources.ResourceFileProvider
import ru.pocketbyte.locolaser.config.resources.filter.ResourcesFilter
import java.io.File
class KotlinAndroidResourcesConfigBuilder
: KotlinBaseResourcesConfigBuilder() {
override fun buildConfig(
workDir: File?,
resourceName: String?,
resourcesDir: String?,
resourceFileProvider: ResourceFileProvider?,
filter: ResourcesFilter?
): KotlinAndroidResourcesConfig {
return KotlinAndroidResourcesConfig(
workDir, resourceName, resourcesDir, implements, filter
)
}
}