Support binding types with unresolved interfaces #359
Labels
enhancement
Proposed change to current functionality
generator
Issues binding a Java library (generator, class-parse, etc.)
Context:
#358 (comment)
Imagine the following:
Further imagine that
Foo
andFooable
are in separatefoo.jar
andfooable.jar
files, and we attempt to bind onlyfoo.jar
.Should this work?
Offhand, I can't think of any reason why it shouldn't be supportable.
Does this work? No. As a specific example, consider
recyclerview-v7-28.0.0-beta01.aar
:android.support.v7.widget.RecyclerView
is a non-abstract
type which implements the interfaceandroid.support.v4.view.ScrollingView
, which cannot be resolved (as it's in a different.jar
file). TheRecyclerView
type is not bound.The text was updated successfully, but these errors were encountered: