Fix crash when sending image with latest posthog

This commit is contained in:
Jorge Martín 2024-01-08 16:12:03 +01:00
parent afacef0146
commit e63eb3a7dc
2 changed files with 6 additions and 0 deletions

View File

@ -35,3 +35,8 @@
-dontwarn org.conscrypt.**
-dontwarn org.bouncycastle.**
-dontwarn org.openjsse.**
# Needed for Posthog
-keepclassmembers class android.view.JavaViewSpy {
static int windowAttachCount(android.view.View);
}

View File

@ -0,0 +1 @@
Fix crash sending image with latest Posthog because of an usage of an internal Android method.