1209c37e24
Android 12 dynamic color usage on login screen
12 lines
223 B
Kotlin
12 lines
223 B
Kotlin
package com.meloda.fast.io
|
|
|
|
import java.nio.charset.Charset
|
|
import java.nio.charset.StandardCharsets
|
|
|
|
object Charsets {
|
|
|
|
val ASCII: Charset = StandardCharsets.US_ASCII
|
|
|
|
val UTF_8: Charset = StandardCharsets.UTF_8
|
|
|
|
} |