Update README.md

This commit is contained in:
a7urag
2019-08-21 23:01:15 +05:30
committed by Mikael Sand
parent fc218856b0
commit 4a696dc374
+8
View File
@@ -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.** {*;}
```