Getting a “no interface expected here” when I try to subclass ServiceConnection [duplicate]

ServiceConnection is an interface, and classes can’t extend interfaces.

Use implements instead

Leave a Comment