I’ve checked all of the superclasses and dependenc...
# android
m
I’ve checked all of the superclasses and dependencies, and didn’t find any abstract property of that name. There is, however, a
val body: String?
property on the
FuelRouting
interface
i
then implement it. AS should be able to help you resolve it easily too. just Alt + Enter and follow prompt
m
Yeah, I tried it, but implementing it does nothing. The error persists. I’ve ripped out Fuel for Retrofit now.
r
Looking at the repo, FuelRouting is a interface. in your subclass you need to implement property members of that interface . with override :: property with correct syntax... so in your custom class there should be override val body: String? = ....