Aleksei
Results
2
comments of
Aleksei
There're two ways to fix crash. **First** 1. Include sources as module to your project. 2. Open SvgToPath class and change this metod: ``` private static PathInfo parse(InputStream in) {...
You can try this: ``` public class DisabledSwitch extends Switch { public DisabledSwitch(Context context, AttributeSet attrs) { super(context, attrs); } @Override public boolean onTouchEvent(@NonNull MotionEvent event) { return false; }...