com.likethesalad.android.templates.common.utils.KotlinExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-tools Show documentation
Show all versions of common-tools Show documentation
This is a Gradle plugin for Android applications which resolves XML string references in other XML strings.
package com.likethesalad.android.templates.common.utils
import java.util.Locale
fun String.upperFirst(): String {
return this.replaceFirstChar {
if (it.isLowerCase()) it.titlecase(
Locale.US
) else it.toString()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy