Use hexToByteArray() extension

This commit is contained in:
Isira Seneviratne 2024-03-20 06:49:09 +05:30 committed by Tobi
parent 2e53a99361
commit 5bdb6f18d6
1 changed files with 2 additions and 1 deletions

View File

@ -15,10 +15,11 @@ object ReleaseVersionUtil {
private const val RELEASE_CERT_PUBLIC_KEY_SHA256 = private const val RELEASE_CERT_PUBLIC_KEY_SHA256 =
"cb84069bd68116bafae5ee4ee5b08a567aa6d898404e7cb12f9e756df5cf5cab" "cb84069bd68116bafae5ee4ee5b08a567aa6d898404e7cb12f9e756df5cf5cab"
@OptIn(ExperimentalStdlibApi::class)
val isReleaseApk by lazy { val isReleaseApk by lazy {
@Suppress("NewApi") @Suppress("NewApi")
val certificates = mapOf( val certificates = mapOf(
RELEASE_CERT_PUBLIC_KEY_SHA256.toByteArray() to PackageManager.CERT_INPUT_SHA256 RELEASE_CERT_PUBLIC_KEY_SHA256.hexToByteArray() to PackageManager.CERT_INPUT_SHA256
) )
val app = App.getApp() val app = App.getApp()
try { try {