Fixing some of the minification issues.

This commit is contained in:
Vitor Pamplona 2024-01-06 11:13:57 -05:00
parent f877b6ff68
commit 5c7e9258c1
3 changed files with 3 additions and 1 deletions

View File

@ -37,6 +37,7 @@ android {
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "benchmark-proguard-rules.pro"
}
release {
isDefault = false
minifyEnabled true
}
create("benchmark") {

View File

@ -32,6 +32,7 @@ android {
}
kotlinOptions {
jvmTarget = '17'
freeCompilerArgs += "-Xstring-concat=inline"
}
}

View File

@ -263,7 +263,7 @@ object CryptoUtils {
}
}
data class EncryptedInfoString(
class EncryptedInfoString(
val ciphertext: String,
val nonce: String,
val v: Int,