how to solve render problem Path.op() not supported?

I was facing the same problem. The reason is, that the new versions of Material Components are bundled with this bug. So, I tried replacing the version in the Gradle build script with the version that supports Path.op().

So, the only thing you have to do is replace the dependency in your Gradle build script with this one:

implementation ‘com.google.android.material:material:1.2.0-alpha02’

Leave a Comment