com.likethesalad.placeholder.models.raw.FlavorValuesRawFiles.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of string-reference Show documentation
Show all versions of string-reference Show documentation
This is a Gradle plugin for Android applications which resolves XML string references in other XML strings.
package com.likethesalad.placeholder.models.raw
import java.io.File
class FlavorValuesRawFiles(
val flavorName: String,
suffix: String,
val complimentaryRawFiles: List,
flavorValuesRawFiles: List
) : RawFiles(suffix, flavorValuesRawFiles) {
override fun getRawFilesMetaList(): List> {
return listOf(complimentaryRawFiles, mainValuesRawFiles)
}
}