Fixes F-droid compilation due to a duplicated class from a unifiedpush crypto bug

This commit is contained in:
Vitor Pamplona
2025-07-11 14:55:13 -04:00
parent 02a9563de6
commit bb5ae5d09e

View File

@@ -171,6 +171,17 @@ android {
}
}
// TODO: until google merges and unifiedpush updates https://github.com/tink-crypto/tink-java-apps/pull/5
configurations.all {
def tink = "com.google.crypto.tink:tink-android:1.17.0"
resolutionStrategy {
force(tink)
dependencySubstitution {
substitute module('com.google.crypto.tink:tink') using module(tink)
}
}
}
kotlin {
compilerOptions {
jvmTarget = JvmTarget.JVM_17