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
Trying to implement this using Kotlin Annotation Processor. The issue I can across was that the method defined in the Store interface was not implemented by the annotation tool.
public final class DroiduxAppStoreJava extends BaseObservable implements AppStoreJava
{
@Override
public List<Guard> getGuards() {
}
@Override
public Observable<List<Guard>> observeGuards() {
}
}
Both implementations of getGuards and observeGuards did not provide return statement. So, does this library works with Kotlin KAPT or I'm missing out something?
The text was updated successfully, but these errors were encountered:
Trying to implement this using Kotlin Annotation Processor. The issue I can across was that the method defined in the
Store
interface was not implemented by the annotation tool.Example
Generated code
Both implementations of
getGuards
andobserveGuards
did not provide return statement. So, does this library works with Kotlin KAPT or I'm missing out something?The text was updated successfully, but these errors were encountered: