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
{{ message }}
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
Right now, rubicon-java only looks at the immediate interfaces a class implements along with its superclasses. ArrayAdapter in Android fails to find SpinnerAdapter, so we have to do this ugly hinting.
# Indicate to `rubicon-java` that `ArrayAdapter` can also be typecast into a
# `SpinnerAdapter`. This is required until `rubicon-java` explores the interfaces
# implemented by a class's subclasses.
ArrayAdapter._alternates.append(b'Landroid/widget/SpinnerAdapter;')
The text was updated successfully, but these errors were encountered:
Right now, rubicon-java only looks at the immediate interfaces a class implements along with its superclasses.
ArrayAdapter
in Android fails to findSpinnerAdapter
, so we have to do this ugly hinting.https://github.com/beeware/toga/pull/905/files#diff-2a4e44cc48a82e70ea678ecb88a8a66fR23
The text was updated successfully, but these errors were encountered: