ru.pocketbyte.locolaser.kotlinmpp.KotlinIosResourcesConfig.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.ResourcesConfigBuilderFactory
import ru.pocketbyte.locolaser.config.resources.filter.ResourcesFilter
import ru.pocketbyte.locolaser.kotlinmpp.resource.KotlinIosResources
import java.io.File
class KotlinIosResourcesConfig(
workDir: File?,
resourceName: String?,
resourcesDirPath: String?,
interfaceName: String?,
filter: ResourcesFilter?
) : KotlinBaseResourcesConfig(
workDir, resourceName, resourcesDirPath, interfaceName, filter
) {
companion object : ResourcesConfigBuilderFactory {
const val TYPE = "kotlin-ios"
override fun getBuilder(): KotlinIosResourcesConfigBuilder {
return KotlinIosResourcesConfigBuilder()
}
}
override val type = TYPE
override val defaultResourcesPath = "./build/generated/src/iosMain/kotlin/"
override val defaultResourceName = "$DEFAULT_PACKAGE.Ios$DEFAULT_INTERFACE_NAME"
override val resources by lazy {
KotlinIosResources(
dir = this.resourcesDir,
name = this.resourceName,
interfaceName = this.implements,
resourceFileProvider = this.resourceFileProvider,
filter = this.filter
)
}
}