This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
android.applicationVariants.all { variant -> | |
task "copyDependencies${variant.name.capitalize()}"() { | |
outputs.upToDateWhen { false } | |
doLast { | |
println "Executing copyDependencies${variant.name.capitalize()}" | |
variant.getCompileClasspath().each { fileDependency -> | |
def sourcePath = fileDependency.absolutePath | |
def destinationPath = project.projectDir.path + "/build/dependencies/${variant.name}/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import androidx.compose.ui.graphics.Color | |
data class TailwindColor( | |
val primary: Color, | |
private val swatch: Map<Int, Long>, | |
) { | |
operator fun get(index: Int) = Color(swatch[index]!!) | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<hr> | |
<p><strong>Advertisement 😃</strong></p> | |
<ul> | |
<li><strong><a href="https://nodeca.github.io/pica/demo/">pica</a></strong> - high quality and fast image | |
resize in browser.</li> | |
<li><strong><a href="https://github.com/nodeca/babelfish/">babelfish</a></strong> - developer friendly | |
i18n with plurals support and easy syntax.</li> | |
</ul> | |
<p>You will like those projects!</p> | |
<hr> |