Skip to content

Instantly share code, notes, and snippets.

@albertogarrido
albertogarrido / HyperlinkText.kt
Last active March 28, 2023 15:04 — forked from stevdza-san/HyperlinkText.kt
Embedd a Hyperlink within a Text using Jetpack Compose.
import androidx.compose.foundation.text.ClickableText
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.platform.LocalUriHandler
import androidx.compose.ui.text.SpanStyle
import androidx.compose.ui.text.buildAnnotatedString
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextDecoration
import androidx.compose.ui.unit.TextUnit
@albertogarrido
albertogarrido / CheckUnusedStringsAndroid.kt
Last active March 6, 2024 10:54
Check unused strings android
/**
Small utility to find all unused strings on an android project
Build:
$ kotlinc CheckUnusedStringsAndroid.kt -include-runtime -d CheckUnusedStringsAndroid.jar
Run:
$ java -jar CheckUnusedStringsAndroid.jar $PATH_TO_YOUR_PROJECT
*/