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

com.likethesalad.tools.resource.api.Resource.kt Maven / Gradle / Ivy

Go to download

Plugin that gathers resources from Android projects for compilation purposes.

The newest version!
package com.likethesalad.tools.resource.api

import com.likethesalad.tools.resource.api.common.Named
import com.likethesalad.tools.resource.api.attributes.AttributeContainer

interface Resource {
    fun value(): Any
    fun attributes(): AttributeContainer
    fun scope(): Scope
    fun type(): Type

    interface Type : Named
    interface Scope : Named
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy