Merge pull request #14473 from Simonx22/android/proguard-keep-rules

Android: Add ProGuard keep rules for classes and methods referenced in IDCache
This commit is contained in:
JosJuice 2026-03-16 18:22:05 +01:00 committed by GitHub
commit 94b6251d99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,3 +12,8 @@
-dontwarn org.openjsse.javax.net.ssl.SSLParameters
-dontwarn org.openjsse.javax.net.ssl.SSLSocket
-dontwarn org.openjsse.net.ssl.OpenJSSE
# This is referenced in JNI_OnLoad.
-keep class androidx.core.util.Pair {
<init>(java.lang.Object, java.lang.Object);
}