2023-09-20 00:27:15 +03:00
|
|
|
################################################################################
|
|
|
|
# Bitwarden SDK
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# We need to access the SDK using JNA and this makes it very easy to obfuscate away the SDK unless
|
|
|
|
# we keep it here.
|
2023-10-03 22:37:29 +03:00
|
|
|
-keep class com.bitwarden.core.** { *; }
|
2023-09-20 00:27:15 +03:00
|
|
|
-keep class com.bitwarden.sdk.** { *; }
|
|
|
|
|
2023-10-23 23:21:30 +03:00
|
|
|
################################################################################
|
|
|
|
# Bitwarden Models
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# R8 currently has trouble with some Retrofit calls dealing with sealed classes.
|
|
|
|
# For now we will keep all network layer models.
|
|
|
|
-keepclassmembers class com.x8bit.bitwarden.**.network.model.** { *; }
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
################################################################################
|
|
|
|
# Firebase Crashlytics
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Keep file names and line numbers.
|
|
|
|
-keepattributes SourceFile,LineNumberTable
|
|
|
|
|
|
|
|
# Keep custom exceptions.
|
|
|
|
-keep public class * extends java.lang.Exception
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# kotlinx.serialization
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
-keepattributes *Annotation*, InnerClasses
|
|
|
|
|
|
|
|
# JsonElement serializers
|
|
|
|
-keep,includedescriptorclasses class kotlinx.serialization.json.**$$serializer { *; }
|
|
|
|
-keep,includedescriptorclasses class com.x8bit.bitwarden.**$$serializer { *; }
|
|
|
|
-keepclassmembers class com.x8bit.bitwarden.** {
|
|
|
|
*** Companion;
|
|
|
|
}
|
2023-10-03 22:37:29 +03:00
|
|
|
-keepclasseswithmembers class com.x8bit.bitwarden.** {
|
2023-08-23 00:03:42 +03:00
|
|
|
kotlinx.serialization.KSerializer serializer(...);
|
|
|
|
}
|
|
|
|
|
|
|
|
# kotlinx-serialization-json specific.
|
|
|
|
-keepclassmembers class kotlinx.serialization.json.** {
|
|
|
|
*** Companion;
|
|
|
|
}
|
|
|
|
-keepclasseswithmembers class kotlinx.serialization.json.** {
|
|
|
|
kotlinx.serialization.KSerializer serializer(...);
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Glide
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
-keep public class * implements com.bumptech.glide.module.GlideModule
|
|
|
|
-keep public class * extends com.bumptech.glide.module.AppGlideModule
|
|
|
|
|
2023-09-20 00:27:15 +03:00
|
|
|
################################################################################
|
|
|
|
# JNA
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# See https://github.com/java-native-access/jna/blob/fdb8695fb9b05fba467dadfe5735282f8bcc053d/www/FrequentlyAskedQuestions.md#jna-on-android
|
|
|
|
-dontwarn java.awt.*
|
|
|
|
-keep class com.sun.jna.* { *; }
|
|
|
|
-keepclassmembers class * extends com.sun.jna.* { public *; }
|
|
|
|
|
|
|
|
# Keep annotated classes
|
|
|
|
-keep @com.sun.jna.* class *
|
|
|
|
-keepclassmembers class * {
|
|
|
|
@com.sun.jna.* *;
|
|
|
|
}
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
################################################################################
|
|
|
|
# Okhttp/Retrofit https://square.github.io/okhttp/ & https://square.github.io/retrofit/
|
|
|
|
################################################################################
|
|
|
|
|
2023-10-03 22:37:29 +03:00
|
|
|
# Retrofit does reflection on generic parameters. InnerClasses is required to use Signature and
|
|
|
|
# EnclosingMethod is required to use InnerClasses.
|
|
|
|
-keepattributes Signature, InnerClasses, EnclosingMethod
|
|
|
|
|
|
|
|
# Retrofit does reflection on method and parameter annotations.
|
|
|
|
-keepattributes RuntimeVisibleAnnotations, RuntimeVisibleParameterAnnotations
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
# https://github.com/square/okhttp/blob/339732e3a1b78be5d792860109047f68a011b5eb/okhttp/src/jvmMain/resources/META-INF/proguard/okhttp3.pro#L11-L14
|
|
|
|
-dontwarn okhttp3.internal.platform.**
|
|
|
|
-dontwarn org.bouncycastle.**
|
|
|
|
# Related to this issue on https://github.com/square/retrofit/issues/3880
|
|
|
|
# Check https://github.com/square/retrofit/tags for new versions
|
2023-10-03 22:37:29 +03:00
|
|
|
-keep,allowobfuscation,allowshrinking class kotlin.Result
|
2023-08-23 00:03:42 +03:00
|
|
|
-keep,allowobfuscation,allowshrinking interface retrofit2.Call
|
|
|
|
-keep,allowobfuscation,allowshrinking class retrofit2.Response
|
|
|
|
# This solves this issue https://github.com/square/retrofit/issues/3880
|
|
|
|
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
|
|
|
|
|
2023-10-03 22:37:29 +03:00
|
|
|
# With R8 full mode, it sees no subtypes of Retrofit interfaces since they are created with a Proxy
|
|
|
|
# and replaces all potential values with null. Explicitly keeping the interfaces prevents this.
|
|
|
|
-if interface * { @retrofit2.http.* <methods>; }
|
|
|
|
-keep,allowobfuscation interface <1>
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
################################################################################
|
|
|
|
# ZXing
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Suppress zxing missing class error due to circular references
|
|
|
|
-dontwarn com.google.zxing.BarcodeFormat
|
|
|
|
-dontwarn com.google.zxing.EncodeHintType
|
|
|
|
-dontwarn com.google.zxing.MultiFormatWriter
|
|
|
|
-dontwarn com.google.zxing.common.BitMatrix
|