BottomBar
BottomBar copied to clipboard
Can't find referenced class VerticalScrollingBehavior
Hi, I have an issue when trying to build. Warning:com.roughike.bottombar.BottomNavigationBehavior: can't find referenced class com.roughike.bottombar.VerticalScrollingBehavior$ScrollDirection
I use Proguard to minimize the size of my project, Is there anything to add in this config file ?
@Hiike, I've temporary fixed this issue with proguard by adding this dontwarn
rule to my proguard file:
-dontwarn com.roughike.bottombar.**
Everything worked as expected. Because the ScrollDirection interface have Source
retention, i think it will not cause any problem. But i don't why this problem is happening...
Issue is fixed temporarily by adding the dontwarn
I'm also having this issue. Adding a dontwarn rule fixes the issue, but not keen on adding dontwarn rules
Perhaps this should be added to the readme? Or bundled within the library?