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

com.likethesalad.android.templates.common.plugins.extension.StemExtension.kt Maven / Gradle / Ivy

package com.likethesalad.android.templates.common.plugins.extension

import org.gradle.api.model.ObjectFactory
import org.gradle.api.provider.Property
import javax.inject.Inject

open class StemExtension @Inject constructor(objectFactory: ObjectFactory) {
    val includeLocalizedOnlyTemplates: Property = objectFactory.property(Boolean::class.java)

    init {
        includeLocalizedOnlyTemplates.convention(false)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy