All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.com.codingfeline.buildkonfig.compiler.BuildKonfigData.kt Maven / Gradle / Ivy

The newest version!
package com.codingfeline.buildkonfig.compiler

data class BuildKonfigData(
    val packageName: String,
    val objectName: String,
    val exposeObject: Boolean,
    // filed specs for common source set
    val commonConfig: TargetConfigFile,
    // field specs for target source set
    val targetConfigs: List,
    val hasJsTarget: Boolean
) {
    val hasTargetSpecificConfigs: Boolean = targetConfigs.any { it.config != null }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy