2017-12-14 14:25:49 +01:00
|
|
|
-dontobfuscate
|
|
|
|
|
2019-05-09 17:44:34 +02:00
|
|
|
-keep class eu.sum7.conversations.**
|
2017-12-14 14:25:49 +01:00
|
|
|
|
|
|
|
-keep class org.whispersystems.**
|
|
|
|
|
|
|
|
-keep class com.kyleduo.switchbutton.Configuration
|
|
|
|
|
|
|
|
-keep class com.soundcloud.android.crop.**
|
|
|
|
|
|
|
|
-keep class com.google.android.gms.**
|
|
|
|
|
|
|
|
-keep class org.openintents.openpgp.*
|
2020-04-04 15:30:13 +02:00
|
|
|
-keep class org.webrtc.** { *; }
|
2017-12-14 14:25:49 +01:00
|
|
|
|
2020-05-03 22:09:31 +02:00
|
|
|
-dontwarn javax.mail.internet.MimeMessage
|
|
|
|
-dontwarn javax.mail.internet.MimeBodyPart
|
|
|
|
-dontwarn javax.mail.internet.SharedInputStream
|
|
|
|
-dontwarn javax.activation.DataContentHandler
|
2017-12-14 14:25:49 +01:00
|
|
|
-dontwarn org.bouncycastle.mail.**
|
|
|
|
-dontwarn org.bouncycastle.x509.util.LDAPStoreHelper
|
|
|
|
-dontwarn org.bouncycastle.jce.provider.X509LDAPCertStoreSpi
|
|
|
|
-dontwarn org.bouncycastle.cert.dane.**
|
2018-03-05 18:30:40 +01:00
|
|
|
-dontwarn rocks.xmpp.addr.**
|
2018-12-13 19:29:46 +01:00
|
|
|
-dontwarn com.google.firebase.analytics.connector.AnalyticsConnector
|
2019-04-24 13:25:54 +02:00
|
|
|
-dontwarn java.lang.**
|
|
|
|
-dontwarn javax.lang.**
|
2019-07-10 22:10:36 +02:00
|
|
|
|
2019-09-18 11:04:36 +02:00
|
|
|
-keepclassmembers class eu.siacs.conversations.http.services.** {
|
|
|
|
!transient <fields>;
|
|
|
|
}
|
2019-07-10 22:10:36 +02: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
|
|
|
|
|
|
|
|
# Retain service method parameters when optimizing.
|
|
|
|
-keepclassmembers,allowshrinking,allowobfuscation interface * {
|
|
|
|
@retrofit2.http.* <methods>;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Ignore annotation used for build tooling.
|
|
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
|
|
|
|
|
|
|
|
# Ignore JSR 305 annotations for embedding nullability information.
|
|
|
|
-dontwarn javax.annotation.**
|
|
|
|
|
|
|
|
# Guarded by a NoClassDefFoundError try/catch and only used when on the classpath.
|
|
|
|
-dontwarn kotlin.Unit
|
|
|
|
|
|
|
|
# Top-level functions that can only be used by Kotlin.
|
|
|
|
-dontwarn retrofit2.KotlinExtensions
|
|
|
|
-dontwarn retrofit2.KotlinExtensions$*
|
|
|
|
|
|
|
|
# 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>
|