diff --git a/README.md b/README.md index c1d110db..2035dc2e 100644 --- a/README.md +++ b/README.md @@ -1103,3 +1103,11 @@ yarn ### Known issues: 1. Unable to apply focus point of RadialGradient on Android. + +### Troubleshooting +##### Problems with Proguard +When Proguard is enabled (which it is by default for Android release builds), it causes runtine error +To avoid this, add an exception to `android/app/proguard-rules.pro`: +```bash +-keep public class com.horcrux.svg.** {*;} +```