how to solve render problem Path.op() not supported?
Problem solved by replacing the material component implementation in Gradle Build ( at App level )
com.google.android.material:material:1.2.0-alpha05
to
com.google.android.material:material:1.2.0-alpha02
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'