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
On Android com.google.common.base.Supplier doesn't inherit from java.util.function.Supplier. This leads to a java.lang.IncompatibleClassChangeError at runtime.
Solution
Replace all occurrences of java.util.function.Supplier with com.google.common.base.Supplier.
I would be happy to create a pull request for this if you're open to considering it for merging.
AFAICT that is the only issue when using SSZ on Android. At least regarding the code paths that Samba reaches as of now.
The text was updated successfully, but these errors were encountered:
Issue description
On Android
com.google.common.base.Supplier
doesn't inherit fromjava.util.function.Supplier
. This leads to ajava.lang.IncompatibleClassChangeError
at runtime.Solution
Replace all occurrences of
java.util.function.Supplier
withcom.google.common.base.Supplier
.I would be happy to create a pull request for this if you're open to considering it for merging.
AFAICT that is the only issue when using SSZ on Android. At least regarding the code paths that Samba reaches as of now.
The text was updated successfully, but these errors were encountered: