-
Notifications
You must be signed in to change notification settings - Fork 388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unsupported Operation Exception for clipPath on api 15. #100
Comments
Hi, looks like you have enabled hardware acceleration in the manifest, in order to stop receiving this exception you need to disable it <application android:hardwareAccelerated="true">
<!-- Or in the actviity -->
<activity android:hardwareAccelerated="false" /> |
I believe it can be done via software call on specific cases: Would you be interested in a pull request addressing this? I would avoid software rendering altogether in API levels from 11 through 17. |
it would be awesome if you could give PR, I would merge it :) |
Just FYI, I've created #130. |
The following exception was thrown when run inside an Api-15 Emulator device.
I tried to accommodate the situation by setting the layer type to
View.LAYER_TYPE_SOFTWARE
but it was of no help.The text was updated successfully, but these errors were encountered: