Primož Pesjak
Primož Pesjak
I tried loading it in a canary android studio and it failed even after I invalidated caches and restart. But it was a different error. Something about permissions in modules.
I removed the animation.
I managed to fixed it. I dowloaded the library and changed **onTouchEvent**. SOLUTION: ` parent.requestDisallowInterceptTouchEvent(true)` This is the full onTouchEvent code. ``` @SuppressLint("ClickableViewAccessibility") override fun onTouchEvent(ev: MotionEvent): Boolean { //To...
I think I don't need anything else. These animations that you can create are sometimes weird for me, because if you want to have a clear transition from A->B, you...