You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, all classes in Kotlin are final. The old LoopingViewPager (on Java) was a public class thus could be extended (which we did). The new LoopingViewPager (on Kotlin) is not open which means it is the same as a final non-extendable class in Java. Can you please make it open so that we can migrate easily to the newest version?
The text was updated successfully, but these errors were encountered:
By default, all classes in Kotlin are final. The old LoopingViewPager (on Java) was a public class thus could be extended (which we did). The new LoopingViewPager (on Kotlin) is not open which means it is the same as a final non-extendable class in Java. Can you please make it open so that we can migrate easily to the newest version?
The text was updated successfully, but these errors were encountered: