Aleksei Potapkin
Aleksei Potapkin
In our project we have apk names with the version included. It will be very convenient if Marathonfile supported regex or wildcards for its `applicationApk` and `testApplicationApk` parameters. Passing them...
Also in our fork we had to disable font variation settings because Paint#setFontVariationSettings() creates a new Typeface internally each time [you invoke it](https://github.com/BigBadaboom/androidsvg/blob/5db71ef0007b41644258c1f139f941017aef7de3/androidsvg/src/main/java/com/caverock/androidsvg/utils/SVGAndroidRenderer.java#L1610) and it's not a lightweight operation. Example...
Optimization from PR #221 is not enough. We had to disable[ this preprocessing ](https://github.com/BigBadaboom/androidsvg/blob/5db71ef0007b41644258c1f139f941017aef7de3/androidsvg/src/main/java/com/caverock/androidsvg/utils/SVGAndroidRenderer.java#L2032)in our fork to achieve decent performance. It may, probably, be moved to parsing phase and rewritten...
In PR #219 we have added explicit method to parse CSS. But it does not expose any error while parsing CSS. We probably should throw CSSParseException from CSS#getFromString() to allow...
Aggregate contract comment fixes related to v2 here