timusus / RecyclerView-FastScroll

A simple FastScroller for Android's RecyclerView
Other
1.39k stars 183 forks source link

Canvas.save(int) no longer exists as of API level 28 #88

Closed ghost closed 5 years ago

ghost commented 6 years ago

When I build the application with ProGuard, I get the following warning.

Warning: com.simplecityapps.recyclerview_fastscroll.views.FastScrollPopup: can't find referenced method 'int save(int)' in library class android.graphics.Canvas

This method was deprecated in API level 26 (along with Canvas.MATRIX_SAVE_FLAG) and removed in API level 28.

Curiously, the library still seems to function correctly if I insert a dontwarn into the ProGuard rules; so that is a viable work-around for the time being.

-dontwarn com.simplecityapps.recyclerview_fastscroll.views.FastScrollPopup
timusus commented 5 years ago

Resolved with #96