mirror of
https://github.com/bitwarden/android.git
synced 2025-12-10 09:56:45 -06:00
24 lines
762 B
Prolog
24 lines
762 B
Prolog
# CredentialManager classes
|
|
-keep class androidx.credentials.** { *; }
|
|
-keep interface androidx.credentials.** { *; }
|
|
|
|
# Hilt
|
|
-dontwarn com.google.errorprone.annotations.**
|
|
|
|
# Kotlinx Serialization
|
|
-keepattributes *Annotation*, InnerClasses
|
|
-dontnote kotlinx.serialization.AnnotationsKt
|
|
-keepclassmembers class kotlinx.serialization.json.** {
|
|
*** Companion;
|
|
}
|
|
-keepclasseswithmembers class kotlinx.serialization.json.** {
|
|
kotlinx.serialization.KSerializer serializer(...);
|
|
}
|
|
-keep,includedescriptorclasses class com.bitwarden.testharness.**$$serializer { *; }
|
|
-keepclassmembers class com.bitwarden.testharness.** {
|
|
*** Companion;
|
|
}
|
|
-keepclasseswithmembers class com.bitwarden.testharness.** {
|
|
kotlinx.serialization.KSerializer serializer(...);
|
|
}
|