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

com.likethesalad.tools.resource.api.attributes.AttributeContainer.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.attributes

interface AttributeContainer {
    fun get(key: AttributeKey): String?
    fun set(key: AttributeKey, value: String)
    fun remove(key: AttributeKey)
    fun asMap(): Map
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy