![JAR search and dependency download from the Maven repository](/logo.png)
ru.pocketbyte.locolaser.mobile.IosBaseClassResourcesConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resource-mobile Show documentation
Show all versions of resource-mobile Show documentation
Implementation of platform for LocoLaser tool to work with Android and iOS platforms.
package ru.pocketbyte.locolaser.mobile
import ru.pocketbyte.locolaser.config.resources.BaseResourcesConfig
import ru.pocketbyte.locolaser.config.resources.ResourceFileProvider
import ru.pocketbyte.locolaser.mobile.resource.file.provider.IosClassResourceFileProvider
import java.io.File
abstract class IosBaseClassResourcesConfig(
workDir: File?,
resourceName: String?,
resourcesDirPath: String?,
resourceFileProvider: ResourceFileProvider?,
val tableName: String?,
filter: ((key: String) -> Boolean)?
) : BaseResourcesConfig(
workDir,
resourceName,
resourcesDirPath,
resourceFileProvider ?: IosClassResourceFileProvider,
filter
) {
override val defaultResourcesPath = "./"
override val defaultResourceName = "Str"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy